
 
 
         var now = new Date();
         var hours = now.getHours();
         var minutes = now.getMinutes();
         var timeValue = "" + ((hours >12) ? hours -12 :hours)
         timeValue += ((minutes < 10) ? ":0" : ":") + minutes
         timeValue += (hours >= 12) ? " P.M." : " A.M."
         timerRunning = true;
 
 
      mydate = new Date();
      myday = mydate.getDay();
      mymonth = mydate.getMonth();
      myyear= mydate.getYear();
     
 
      
      
 
    
 
      document.write("<B><FONT SIZE=-1 COLOR=FFFFFF FACE=VERDANA,ARIAL>" + timeValue);
      document.write("</FONT></B>");
 

