  function  visitor()
{
//define variable
 var Jsay;
 var Jdayr;
 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();   
  document.write("");
  document.write((Jdate)+""+"/"+"" );
  document.write((Jmonth+1));
  document.write(""+"/"+""+Jyear+""+" "+"");       
if (Jday==1)
 document.write(""+""+""+"Monday"+"");
else if (Jday==2) 
 document.write(""+""+""+"Tuesday"+"");
else if (Jday==3) 
 document.write(""+""+""+"Wednesday"+"");
else if (Jday==4) 
 document.write(""+""+""+"Thursday"+"");
else if (Jday==5) 
 document.write(""+""+""+"Friday"+"");
else if (Jday==6) 
 document.write(""+""+""+"Saturday"+"");
else if (Jday==0) 
 document.write(""+""+""+"Sunday"+"");
}