       some="1911" 
        Stamp = new Date();
                document.write('<font size="2" face="Arial,Geneva,Sans Serif"><B>' + (Stamp.getYear()-some) +"年"+(Stamp.getMonth() + 1)+ "月"+Stamp.getDate() +"日"+ '</B></font>');

var vn="Microsoft Internet Explorer";
var some;
if(navigator.appName!=vn)
some="11";
else
some="1911";
var enabled = 0; today = new Date();
var day; var date;
if(today.getDay()==0) day = "<font color=red>星期日</font>"
if(today.getDay()==1) day = "星期一"
if(today.getDay()==2) day = "星期二"
if(today.getDay()==3) day = "星期三"
if(today.getDay()==4) day = "星期四"
if(today.getDay()==5) day = "星期五"
if(today.getDay()==6) day = "<font color=BLUEVIOLET>星期六</font>"
document.write( day.fontsize(2));
document.write("<br>");
document.write('<font size="2" face="Arial,Geneva,Sans Serif"><B>' +"<span id='clock'></span><br>");
var now,hours,minutes,seconds,timeValue;
function showtime(){
now = new Date();
hours = now.getHours();
minutes = now.getMinutes();
seconds = now.getSeconds();
timeValue = (hours >= 12) ? "下午 " : "上午 ";
timeValue += ((hours > 12) ? hours - 12 : hours) + ":";
timeValue += ((minutes < 10) ? " 0" : " ") + minutes + ":";
timeValue += ((seconds < 10) ? " 0" : " ") + seconds;
clock.innerHTML = timeValue;
setTimeout("showtime()",100);
}
showtime();
-->
