  function  visitor()    
{    
//define variable    
 var  Jtoday= new Date();    
 var  Jyear= Jtoday.getYear(); Jmonth=Jtoday.getMonth();    
         Jday= Jtoday.getDay();  Jdate=Jtoday.getDate();    
         Jhrs= Jtoday.getHours(); Jmin=Jtoday.getMinutes();    
          Jsec=Jtoday.getSeconds();       
if (Jmin<=9)
 document.write("<font color=#000000 face=ssDigits>"+Jhrs+": 0"+Jmin+" </font>");
else
 document.write("<font color=#000000 face=ssDigits>"+Jhrs+": "+Jmin+" </font>");
 document.write("<font color=#000000 face=Arial>");
if (Jmonth==0)
 document.write("January");
else if (Jmonth==1)
 document.write("February");
else if (Jmonth==2)
 document.write("March");
else if (Jmonth==3)
 document.write("April");
else if (Jmonth==4)
 document.write("May");
else if (Jmonth==5)
 document.write("June");
else if (Jmonth==6)
 document.write("July");
else if (Jmonth==7)
 document.write("August");
else if (Jmonth==8)
 document.write("September");
else if (Jmonth==9)
 document.write("October");
else if (Jmonth==10)
 document.write("November");
else if (Jmonth==11)
 document.write("December");
 document.write("</font><font color=#000000 face=ssDigits> "+Jdate+" "+Jyear+"</font><font color=#000000 face=Arial>, ");
if (Jday==1)    
 document.write("Mon");    
else if (Jday==2)     
 document.write("Tue");    
else if (Jday==3)     
 document.write("Wed");    
else if (Jday==4)     
 document.write("Thu");    
else if (Jday==5)     
 document.write("Fri");    
else if (Jday==6)     
 document.write("Sat");    
else if (Jday==7)     
 document.write("Sun");
 document.write("</font>");
}
visitor();