welcome();

function welcome()
{
var thedate;
var thehour;

thedate = new Date();
document.write(thedate);
thehour = thedate.getHours(1);

document.write(" ");

if (thehour <12)
  document.write("<br><img src=_images/am.gif border=0 align=absbottom width=25 height=25><b><font size=4 color=#999900>Good Morning!</font></b>")
else if (thehour < 18)
  document.write("<br><img src=_images/pm.gif border=0 align=absbottom width=25 height=25><b><font size=4 color=#333399>Good Afternoon!</font></b>")
else
  document.write("<br><img src=_images/evening.gif border=0 align=absbottom width=25 height=25><b><font size=4 color=#666666>Good Evening!</font></b>")    


}

