<!-- Begin
// This is a JavaScript program which will display a time-specific greeting.
// Programmed by Eric Kohler
// Last modified 10/12/2001
function checktime() {
  var thisday=new Date();
  var hour=thisday.getHours();
  if ((hour >= 4) && (hour < 12))
    {document.write("Good morning!");}
  if ((hour >= 12) && (hour < 17))
    {document.write("Good afternoon!");}
  if ((hour >=17) && (hour < 22))
    {document.write("Good evening!");}
  if ((hour >=22) || (hour < 4))
    {document.write("Have a good night!");}
}
//End -->