      timeID ="10"
      function Flash() {
     	 var RightNow = new Date();
      	if (RightNow.getDay()==0){
      	 cDay='日';
     	 }else if (RightNow.getDay()==1){
     	  cDay='一';
      	}else if (RightNow.getDay()==2){
      	 cDay='二';
     	 }else if (RightNow.getDay()==3){
      	 cDay='三';
      	}else if (RightNow.getDay()==4){
       	cDay='四';
      	}else if (RightNow.getDay()==5){
       	cDay='五';
     	 }else if (RightNow.getDay()==6){
       	cDay='六';
      }
      month = "0"+(1+RightNow.getMonth());
      day = "0" + RightNow.getDate();
      hour = "0" + RightNow.getHours();
      minute = "0" + RightNow.getMinutes();
      sec = "0" + RightNow.getSeconds();

        cl = eval(RightNow.getFullYear()-1911)+'年'+ month.substring(month.length-2,month.length+1)+ '月' + day.substring(day.length-2,day.length+1)+'日' + 
             hour.substring(hour.length-2, hour.length+1)+':' + minute.substring(minute.length-2, minute.length+1) +':' + sec.substring(sec.length-2, sec.length+1);
        document.t1.time1.value = cl;      	
        setTimeout("Flash()",1000);
     }
