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('\t'+"<font color=#000000>"+"</font>");              
              
  document.write("<font color=#000000>"+""+"</font>");              
              
  document.write('<font color=#000000>'+'</font>'+Jyear+"<font color=#000000>"+"年"+"</font>" );              
              
 document.write((Jmonth+1));              
              
 document.write("<font color=#000000>"+"月"+"</font>"+Jdate+"<font color=#000000>"+"日 "+"</font>");                     
              
              
              
if (Jday==1)              
              
 document.write("星期一");              
              
              
              
else if (Jday==2)               
              
 document.write("星期二");              
              
              
              
else if (Jday==3)               
              
 document.write("星期三");              
              
              
              
else if (Jday==4)               
              
 document.write("星期四");              
              
              
              
else if (Jday==5)               
              
 document.write("星期五");              
              
              
              
else if (Jday==6)               
              
 document.write("星期六");              
              
              
              
else if (Jday==7)               
              
 document.write("星期日");              
              
}              
              
              
              
visitor();              
