function process(){}
 
   today = new Date()
 
   if(today.getMinutes() < 10) {
     pad = "0"}
   else
     pad = "";
   document.write("<center><FONT SIZE=4 color=black>Welcome!!</FONT></center>")
 
   if((today.getHours() < 12) && (today.getHours() >= 6))
   {  document.write("<center><FONT SIZE=4 color=blue>Good Morning</FONT></center>")}
 
   if((today.getHours() >= 12) && (today.getHours() < 18))
   {  document.write("<center><FONT SIZE=4 color=blue>Good Afternoon</FONT></center>")}
 
   if((today.getHours() >= 18) && (today.getHours() <= 23))
   {  document.write("<center><FONT SIZE=4 color=blue>Good Evening</FONT></center>")}
 
   if((today.getHours() >= 0) && (today.getHours() < 4))
   {  document.write("<center><FONT SIZE=4 color=blue>You're up late today.</FONT></center>")}
 
   if((today.getHours() >= 4) && (today.getHours() <= 6))
   {  document.write("<center><FONT SIZE=4 color=blue>Wow! You are up early!!</FONT></center>")}
 
   document.write("<center><FONT SIZE=3 color=red>Time: ",today.getHours(),":",pad,today.getMinutes())
 
   document.write("  Date: ",today.getMonth()+1,"/",today.getDate(),"/",today.getYear(),"<br></font></center>");