now = new Date();
theHour = now.getHours();
if (theHour < 12) { greeting = 'Good Morning!'; }
else if (theHour < 17) { greeting = 'Good Afternoon!'; }
else { greeting = 'Good Evening!'; }
  document.write(greeting);
  document.write("... today&nbsp;is&nbsp;");
  document.write('<A href="javascript: onClick=getCalendarDay()" style="font-family: arial,verdana,sans-serif; font-weight: 400; font-size: 9.6px; font-style: normal; color: #808080; text-decoration: none;">');

vs = navigator.appVersion;
  if ((navigator.appName == "Netscape") && (vs.indexOf("2.0", 0) != -1)) {
    vs = ""
      } else document.write(customDateString(new Date()))
			
  document.write("</a>&nbsp;");


