﻿document.writeln('<span id=localtime></span>')
document.writeln('<script type=\"text/javascript\">')
document.writeln('function showLocale(objD)')
document.writeln('{')
document.writeln('	var str,colorhead,colorfoot;')
document.writeln('	var yy = objD.getYear();')
document.writeln('	if(yy<1900) yy = yy+1900;')
document.writeln('	var MM = objD.getMonth()+1;')
document.writeln('	if(MM<10) MM = \"0\" + MM;')
document.writeln('	var dd = objD.getDate();')
document.writeln('	if(dd<10) dd = \"0\" + dd;')
document.writeln('	var hh = objD.getHours();')
document.writeln('	if(hh<10) hh = \"0\" + hh;')
document.writeln('	var mm = objD.getMinutes();')
document.writeln('	if(mm<10) mm = \"0\" + mm;')
document.writeln('	var ss = objD.getSeconds();')
document.writeln('	if(ss<10) ss = \"0\" + ss;')
document.writeln('	var ww = objD.getDay();')
document.writeln('	if  ( ww==0 )  colorhead=\"<font color=\\"#c70909\\">\";')
document.writeln('	if  ( ww > 0 && ww < 6 )  colorhead=\"<font color=\\"#c70909\\">\";')
document.writeln('	if  ( ww==6 )  colorhead=\"<font color=\\"#c70909\\">\";')
document.writeln('	if  (ww==0)  ww=\"星期日\";')
document.writeln('	if  (ww==1)  ww=\"星期一\";')
document.writeln('	if  (ww==2)  ww=\"星期二\";')
document.writeln('	if  (ww==3)  ww=\"星期三\";')
document.writeln('	if  (ww==4)  ww=\"星期四\";')
document.writeln('	if  (ww==5)  ww=\"星期五\";')
document.writeln('	if  (ww==6)  ww=\"星期六\";')
document.writeln('	colorfoot=\"</font>\"')
document.writeln('	str = colorhead + yy + \"年\" + MM + \"月\" + dd + \"日\" + \" \" + ww + \" \" +hh + \":\" + mm + \":\" + ss +  colorfoot;')
document.writeln('	return(str);')
document.writeln('}')
document.writeln('function tick()')
document.writeln('{')
document.writeln('	var today;')
document.writeln('	today = new Date();')
document.writeln('	document.getElementById(\"localtime\").innerHTML = showLocale(today);')
document.writeln('	window.setTimeout(\"tick()\", 1000);')
document.writeln('}')
document.writeln('tick();')
document.writeln('</script>')

