document.writeln("<script   language=javascript>   ");
document.writeln("  var   tTick;                                                       ");
document.writeln("  function   date()   {                                                       ");
document.writeln("        var   enabled   =   0;       today   =   new   Date();                                                       ");
document.writeln("        var   day;       var   date;                                                       ");
document.writeln("        if(today.getDay()==0)                     day   =   \"星期日\"                                                       ");
document.writeln("        else   if(today.getDay()==1)           day   =   \"星期一\"                                                       ");
document.writeln("        else   if(today.getDay()==2)           day   =   \"星期二\"                                                       ");
document.writeln("        else   if(today.getDay()==3)           day   =   \"星期三\"                                                       ");
document.writeln("        else   if(today.getDay()==4)           day   =   \"星期四\"                                                       ");
document.writeln("        else   if(today.getDay()==5)           day   =   \"星期五\"                                                       ");
document.writeln("        else   if(today.getDay()==6)           day   =   \"星期六\";       ");
document.writeln("        if   (today.getYear()>=2000)     ");
document.writeln("                date1=(today.getYear())  +   \"年\"   +(today.getMonth()+1)  +  \"月\"  +today.getDate()+\"日\";       ");
document.writeln("        else                                                       ");
document.writeln("                date1=(1900+today.getYear())  +  \"年\"  +(today.getMonth()+1)  +  \"月\"  +today.getDate()+\"日\";                                                       ");
document.writeln("        return   date1+day;                                                       ");
document.writeln("  }                                                                                                              ");
document.writeln("  function   tick()   {                                                       ");
document.writeln("      var   hours,   minutes,   seconds,   ap;                                                       ");
document.writeln("      var   intHours,   intMinutes,   intSeconds;                                                       ");
document.writeln("      var   today;                                                                                                      ");
document.writeln("      today   =   new   Date();                                                                                                         ");
document.writeln("      intHours   =   today.getHours();                                                       ");
document.writeln("      intMinutes   =   today.getMinutes();                                                       ");
document.writeln("      intSeconds   =   today.getSeconds();                                                                                                            ");
document.writeln("      if   (intHours   ==   0)   {                                                       ");
document.writeln("            hours   =   \"24:\";                                                       ");
document.writeln("            ap   =   \"\";                                                       ");
document.writeln("      }   else   if   (intHours   <   12)   {                                                         ");
document.writeln("            hours   =   intHours+\":\";                                                       ");
document.writeln("            ap   =   \"\";                                                       ");
document.writeln("      }   else   if   (intHours   ==   12)   {                                                       ");
document.writeln("            hours   =   \"12:\";                                                       ");
document.writeln("            ap   =   \"\";                                                       ");
document.writeln("      }   else   {                                                       ");
document.writeln("                                                              ");
document.writeln("            hours   =   intHours   +   \":\";                                                       ");
document.writeln("            ap   =   \"\";                                                       ");
document.writeln("      }                                                       ");
document.writeln("                                                        ");
document.writeln("      if   (intMinutes   <   10)   {                                                       ");
document.writeln("            minutes   =   \"0\"+intMinutes+\":\";                                                       ");
document.writeln("      }   else   {                                                       ");
document.writeln("            minutes   =   intMinutes+\":\";                                                       ");
document.writeln("      }                                                       ");
document.writeln("                                                        ");
document.writeln("      if   (intSeconds   <   10)   {                                                       ");
document.writeln("            seconds   =   \"0\"+intSeconds+\"   \";                                                       ");
document.writeln("      }   else   {                                                       ");
document.writeln("            seconds   =   intSeconds+\"   \";                                                       ");
document.writeln("      }                                                                                                                ");
document.writeln("      timeString   =   hours+minutes+seconds+ap;                                                                                                        ");
document.writeln("      timeString   =  \"<font   color=\'White\'>\"+\"<left>\"+date()+\"&nbsp;\"+timeString+\"</left>\"+\"</font>\";                                                                             ");
document.writeln("      Clock.innerHTML   =   timeString                                                       ");
document.writeln("                                                        ");
document.writeln("      tTick=window.setTimeout(\"tick();\",   1000)                                                       ");
document.writeln("  }                                                                                                            ");
document.writeln("  document.writeln(\"<div   id=Clock>&nbsp;</div>\")                                                       ");
document.writeln("  window.onload   =   tick                                                       ");
document.writeln("  window.onunload   =   new   Function(\"clearTimeout(tTick)\")                                       ");
document.writeln("  </script>");
