document.writeln("<SCRIPT language=JavaScript>");
document.writeln("<!--");
document.writeln("var enabled = 0; today = new Date();");
document.writeln("var day; var date;");
document.writeln("if(today.getDay()==0) day = \"星期日 \"");
document.writeln("if(today.getDay()==1) day = \"星期一 \"");
document.writeln("if(today.getDay()==2) day = \"星期二 \"");
document.writeln("if(today.getDay()==3) day = \"星期三 \"");
document.writeln("if(today.getDay()==4) day = \"星期四 \"");
document.writeln("if(today.getDay()==5) day = \"星期五 \"");
document.writeln("if(today.getDay()==6) day = \"星期六 \"");
document.writeln("date1 =(today.getYear()) + \"年\" + (today.getMonth() + 1 ) + \"月\" + today.getDate() + \"日 \" ;");
document.writeln("date2 = day ;");
document.writeln("document.write(date1.fontsize(2));");
document.writeln("document.write(date2.fontsize(2));");
document.writeln("document.write(\"<span id=\'clock\'><\/span>\");");
document.writeln("var now,hours,minutes,seconds,timeValue;");
document.writeln("function showtime(){");
document.writeln("now = new Date();");
document.writeln("hours = now.getHours();");
document.writeln("minutes = now.getMinutes();");
document.writeln("seconds = now.getSeconds();");
document.writeln("timeValue = (hours >= 12) ? \" \" : \" \";");
document.writeln("timeValue += hours+ \":\";");
document.writeln("timeValue += ((minutes < 10) ? \"0\" : \"\") + minutes + \":\";");
document.writeln("timeValue += ((seconds < 10) ? \"0\" : \"\") + seconds + \"\";");
document.writeln("clock.innerHTML = timeValue;");
document.writeln("setTimeout(\"showtime()\",100);");
document.writeln("}");
document.writeln("showtime();");
document.writeln("-->");
document.writeln("");
document.writeln("<\/SCRIPT>");



