<!-- Begin
datetoday = new Date();
timenow=datetoday.getTime();
datetoday.setTime(timenow);
thehour = datetoday.getHours();
themin = datetoday.getMinutes();
if (themin < 10) themin = "0" + themin;
if (thehour > 22) display = "Good late... Night  -  Gute späte... Nacht  -  Bonne nuit, si tard... ";
else if (thehour > 21) display = "Good night  -  Gute Nacht  -  Bonne nuit ";
else if (thehour > 17) display = "Good Evening  -  Guten Abend  -  Bonsoir ";
else if (thehour > 12) display = "Good Afternoon  -  Guten Nachmittag  -  Bon après-midi ";
else if (thehour > 10) display = "Good lunch time  -  Guten Appetit  -  Bon appétit ";
else if (thehour < 4) display = "Good little morning - Guter früher Morgen - Bonne petite journée ";
else if (thehour < 8) display = "Good Morning  -  Guten Morgen  -  Bonjour ";
else display = "Good Morning  -  Guten Morgen  -  Bonjour ";
var greeting = (thehour + ":" + themin + " h - " + display + " !");
document.write("<P style='color:blue' style='font-size:12.0pt' style='font-family:Arial' ALIGN=center>"+"<b>"+greeting);
//  End -->


