document.writeln("<SCRIPT language=JavaScript>");
document.writeln("var day=\"\";");
document.writeln("var month=\"\";");
document.writeln("var ampm=\"\";");
document.writeln("var ampmhour=\"\";");
document.writeln("var myweekday=\"\";");
document.writeln("var year=\"\";");
document.writeln("mydate=new Date();");
document.writeln("myweekday=mydate.getDay();");
document.writeln("mymonth=mydate.getMonth()+1;");
document.writeln("myday= mydate.getDate();");
document.writeln("myyear= mydate.getYear();");
document.writeln("year=(myyear > 200) ? myyear : 1900 + myyear;");
document.writeln("if(myweekday == 0)");
document.writeln("weekday=\" 星期天 \";");
document.writeln("else if(myweekday == 1)");
document.writeln("weekday=\" 星期一\";");
document.writeln("else if(myweekday == 2)");
document.writeln("weekday=\" 星期二 \";");
document.writeln("else if(myweekday == 3)");
document.writeln("weekday=\" 星期三\";");
document.writeln("else if(myweekday == 4)");
document.writeln("weekday=\" 星期四 \";");
document.writeln("else if(myweekday == 5)");
document.writeln("weekday=\" 星期五 \";");
document.writeln("else if(myweekday == 6)");
document.writeln("weekday=\" 星期六 \";");
document.writeln("document.write(year+\"-\"+mymonth+\"-\"+myday+weekday);");
document.writeln("<\/SCRIPT>");