<!-- Begin
var d = new Date();
var h = d.getHours();
document.write("<Font size=4 color=#FFFFFF>");
if (h < 2) document.write("<b><i>"+"Good morning! Yes, it's way past midnight."+"</b></i><br>");
else if (h < 3) document.write("<b><i>"+"Good morning! Up early or working late?"+"</b></i><br>");
else if (h < 7) document.write("<b><i>"+"Good morning! Up bright and early!"+"</b></i><br>");
else if (h < 12) document.write("<b><i>"+"Good morning!"+"</b></i><br>");
else if (h < 17) document.write("<b><i>"+"Good afternoon!"+"</b></i><br>");
else if (h < 23) document.write("<b><i>"+"Good evening!"+"</b></i><br>");
else document.write("<b><i>"+"A late good evening! Not much left of it now."+"</b></i><br>");
document.write("</Font>")
//  End -->

