<!--
var nd, mo, y, wee, da;
nd=new Date();
mo=nd.getMonth()+1;
y=nd.getYear();
if(y<80)y+=2000;
if(y>=80&y<=138)y+=1900;
wee=new Array("星期日","星期一","星期二","星期三","星期四","星期五","星期六");
da=nd.getDay();
document.write("<font LANG='ZH-CN' color=#000000>"+y+"/"+mo+"/"+nd.getDate()+"/ "+"</font>"+"<font color=#000000>"+wee[da]+"</font> ");

//time
document.write("<span id='Clock' style='font-size:12px; color=#000000'></span>");

//-->