<!--
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 color=#ffffff LANG='ZH-CN'>"+y+"年"+mo+"月"+nd.getDate()+"日 "+"</font>"+"<font color=#ffffff>"+wee[da]+"</font> ");

//time
document.write("<span id='Clock' style='font-size:12px; color:Maroon'></span>");

//-->