
<!-- Hide the script from old browsers --
today = new Date()
if(today.getMinutes() < 10){ 
pad = "0"}
else 
pad = "";
document.write ;if((today.getHours() >=6) && (today.getHours() <=10)){
document.write("Guten Morgen, frei heute?")
}
if((today.getHours() >=10) && (today.getHours() <=11)){
document.write("Guten Morgen! ")
}
if((today.getHours() >=12) && (today.getHours() <=16)){
document.write("Einen sch&ouml;nen Nachmittag w&uuml;nsche ich!")
} 
if((today.getHours() >=17) && (today.getHours() <=23)){
document.write("Guten Abend!")
}
if((today.getHours() >=0) && (today.getHours() <=4)){
document.write("Sind Sie nicht m&uuml;de um diese Zeit?")
}
if((today.getHours() >=4) && (today.getHours() <=6)){
document.write("Wow! Sie sind aber fr&uuml;h auf!")
}
// -- End Hiding Here -->

