var d = new Date()
var h = d.getHours()
if (h < 12)
   document.write("<FONT FACE=VERDANA,ARIAL,SANS-SERIF COLOR=#990000 STYLE=font-size:8pt><B>Good Morning!</B></FONT>")
else
if (h < 17)
   document.write("<FONT FACE=VERDANA,ARIAL,SANS-SERIF COLOR=#000066 STYLE=font-size:8pt><B>Good Afternoon!</B></FONT>")
else
document.write("<FONT FACE=VERDANA,ARIAL,SANS-SERIF COLOR=#990000 STYLE=font-size:8pt><B>Good Evening!</B></FONT>")