<html>
<title>NowTime</title>
<body>
<SPAN style="FONT-SIZE: 9pt">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<SCRIPT language=JavaScript>
today=new Date();
function initArray()
{
this.length=initArray.arguments.length
for (var i = 0; i < this.length; i++)
    this[i + 1] = initArray.arguments[i]
    }
var d = new initArray(
"星期日",
"星期一",
"星期二",
"星期三",
"星期四",
"星期五",
"星期六");
document.write("<font color=#076fb7 style='font-size:9pt;font-family: 宋体'> ",
today.getYear(),"年",
today.getMonth() + 1,"月",
today.getDate(),"日",
d[today.getDay() + 1],
"</font>" );
</SCRIPT><SCRIPT language=JavaScript>
function tick()
{
var hours, minutes, seconds, xfile;
var intHours, intMinutes, intSeconds;
var intMilSeconds, milSenconds;
var today;
today = new Date();
intHours = today.getHours();
intMinutes = today.getMinutes();
intSeconds = today.getSeconds();
intMilSeconds = today.getMilliseconds(); <!--
if (intHours == 0) {
hours = "12:";
xfile = "AM";
} else if (intHours < 12) {
hours = intHours+":";
xfile = "AM";
} else if (intHours == 12) {
hours = "12:";
xfile = "AM";
} else {
intHours = intHours - 12
hours = intHours + ":";
xfile = "PM";
}//--> xfile = "";
if (intHours < 10) {
hours = "0" + intHours + ":";
} else {
hours = intHours + ":";
} if (intMinutes < 10) {
minutes = "0" + intMinutes + ":";
} else {
minutes = intMinutes + ":";
} if (intSeconds < 10) {
seconds = "0" + intSeconds + ".";
} else {
seconds = intSeconds + ".";
} if (intMilSeconds > 100) {
milSenconds = intMilSeconds;
} else if (intMilSeconds > 10) {
milSenconds = "0" + intMilSeconds;
} else {
milSenconds = "00" + intMilSeconds;
} timeString = hours + minutes + seconds + milSenconds;
Clock.innerHTML = timeString;
window.setTimeout("tick();", 1000);
}
window.onload = tick;
</SCRIPT>
<DIV id=Clock style="FONT-SIZE: 12px; COLOR: red" align=center></DIV>
</body>
</html>