<!-- 
document.write
day = new Date()
hr = day.getHours()
if (hr == 1)
document.write("Good morning!   1AM and you are still going! ")
if (hr == 2)
document.write("Good morning! Hey, it's past  2AM!")
if (hr == 3)
document.write("Good morning! Hey, it's after  3AM!")
if (hr == 4)
document.write("Good morning! 4AM?  You must roam all night huh!")
if (hr == 5)
document.write("Whoa! It's almost daylight and you are still going!")
if (hr == 6)
document.write("Hey, isn't it way too early to be using your computer?")
if ((hr == 7) || (hr == 8) || (hr == 9) || (hr == 10) || (hr == 11))
document.write("Good Morning!")
if ((hr == 12) ||(hr == 13) || (hr == 14) || (hr == 15) || (hr == 16))
document.write("Good Afternoon!")
if ((hr == 17) || (hr == 18) || (hr == 19) || (hr == 20) || (hr == 21) || (hr == 22))
document.write("Good Evening!")
if (hr == 23)
document.write("It's almost midnight...Aren't you sleepy yet?")
if (hr == 0)
document.write("It's midnight... do you ever sleep?")
document.write
//-->
