<!--
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("Sunday","monday","tuesday","Wednesday","Thursday","Friday","Saturday");

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>");

//-->