function showtime()
{
var today,hour,second,minute,year,month,date;
var strDate ;
today=new Date(); 
year = today.getYear();
if (year < 1900) { year+=1900; } 
month = today.getMonth()+1;
date = today.getDate();
hour = today.getHours();
minute =today.getMinutes();
second = today.getSeconds();
document.getElementById('datetime').innerHTML ="Date£º "+year+"Äê"+month+"ÔÂ"+date+"ÈÕ" + "  " + hour + ":" + minute + ":" + second;
in_ID = setTimeout("showtime();", 1000);

}
