<!--
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' style='font-size:12px;'>"+y+"年"+mo+"月"+nd.getDate()+"日 "+wee[da]+"</font> ");
//-->
