// JavaScript Document
document.writeln("<div id=\"webjx\">");
document.writeln("<\/div>");
document.writeln("<script>setInterval(\"webjx.innerHTML=showTime()\",1000);");
document.writeln("function showTime()");
document.writeln("{");
document.writeln("    var now = new Date(); ");
document.writeln("    var yy = now.getYear(); ");
document.writeln("    var mo = now.getMonth()+1; ");
document.writeln("	var dd= now.getDate()");
document.writeln("	var hh = now.getHours(); ");
document.writeln("    var mm = now.getMinutes(); ");
document.writeln("    var ss = now.getTime() % 60000; ");
document.writeln("    ss = (ss - (ss % 1000)) \/ 1000; ");
document.writeln(" var clock = hh+\':\'; ");
document.writeln("    if (mm < 10) clock += \'0\'; ");
document.writeln("    clock += mm+\':\'; ");
document.writeln("    if (ss < 10) clock += \'0\'; ");
document.writeln("    clock += ss; ");
document.writeln("	return (yy + \'-\' + mo + \'-\'+dd+\" \"+clock+\"(GMT+8:00)\")");
document.writeln("");
document.writeln("}");

document.writeln("<\/script>");
document.writeln("") 




