
<!-- hide script from old browsers

function process(){}

  today = new Date()

  if(today.getMinutes() < 10) {
    pad = "0"}
  else
    pad = "";
  document.write("&nbsp;")

  if((today.getHours() < 12) && (today.getHours() >= 6))
  {  document.write("<FONT SIZE=2 color=black>Good Morning &nbsp;</FONT>")}

  if((today.getHours() >= 12) && (today.getHours() < 18))
  {  document.write("<FONT SIZE=2 color=black>Good Afternoon &nbsp;</FONT>")}

  if((today.getHours() >= 18) && (today.getHours() <= 23))
  {  document.write("<FONT SIZE=2 color=black>Good Evening &nbsp;</FONT>")}

  if((today.getHours() >= 0) && (today.getHours() < 4))
  {  document.write("<FONT SIZE=2 color=black> You're up late today.</FONT>")}

  if((today.getHours() >= 4) && (today.getHours() <= 6))
  {  document.write("<FONT SIZE=2 color=black> Wow! You are up early!!</FONT>")}

  document.write("<FONT SIZE=2 color=black>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Time:  ",today.getHours(),":",pad,today.getMinutes())

  document.write("  &nbsp; &nbsp; &nbsp; &nbsp; Date: ",today.getMonth()+1,"-",today.getDate(),"-",today.getYear(),"</font>");
// end hiding contents -->

