<!-- Verstecken für ältere Browser --
      today = new Date()
 if(today.getMinutes() < 10){
 pad = "0"}
 else
 pad = "";
 document.write ;if((today.getHours() >=7) &&
 (today.getHours() <=12)){
 document.write("<h2> Bonjour!</h2>") //nach 6 Uhr bis 12 Uhr
 }
 if((today.getHours() >=13) && (today.getHours() <=17)){
 document.write("<h2> Bonsoir!</h2>") // nach 13 Uhr bis 18 Uhr
 }
 if((today.getHours() >=18) && (today.getHours() <=23)){
 document.write("<h2> Bonsoir!</h2>") //nach 17 Uhr bis 23 Uhr
 }
 if((today.getHours() >=0) && (today.getHours() <=4)){
 document.write("<h2> Bienvenue!</h2>")
 }
 if((today.getHours() >=5) && (today.getHours() <=6)){
 document.write("<h2> Bienvenue!</h2>")
 }
 // -- Ende verstecken -->