<!--
document.write("<p><font size='4' color='#cccccc'>");
datetoday = new Date();
timenow=datetoday.getTime();
datetoday.setTime(timenow);
thehour = datetoday.getHours();
if (thehour > 23) display = "Evening: Don't be up to late";
else if (thehour >18) display = "Evening";
else if (thehour >12) display = "Afternoon";
else if (thehour >10) display = "Hello, and welcome";
else if (thehour >8) display = "Morning";
else if (thehour >5) display = "Morning, You're up early...";
else if (thehour >2) display = "Night! Why aren't you asleep?..";
else display = "Morning";
var greeting = ("Good " + display + "!");
document.write(greeting);
document.write("</font></p>");
//-->
