<!--
				var enable=0; 
				today =new Date();
				var day;
				var date;
				var centry;
				if(today.getDay()==0) day=" 星期日";
				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=" 星期六";
				centry="";
				if(today.getYear()<2000)centry="19";
				date1=centry+(today.getYear())+"年"+(today.getMonth()+1)+"月"+today.getDate()+"日";
				document.write("<font color='#000000'>"+date1+"</font>");
				document.write("<font color='#000000'>"+day+"</font>");
				//-->

function tick() {
var hours, minutes, seconds, xfile;
var intHours, intMinutes, intSeconds;
var today;
today = new Date();
intHours = today.getHours();
intMinutes = today.getMinutes();
intSeconds = today.getSeconds();
if (intHours == 0) {
hours = "0:";
xfile = " ";
} else if (intHours < 12) { 
hours = intHours+":";
xfile = " ";
} else if (intHours == 12) {
hours = "12:";
xfile = " ";
} else if (intHours < 24) { 
hours = intHours+":";
xfile = " ";
}
if (intMinutes < 10) {
minutes = "0"+intMinutes+":";
} else {
minutes = intMinutes+":";
}
if (intSeconds < 10) {
seconds = "0"+intSeconds+" ";
} else {
seconds = intSeconds+" ";
} 
timeString = xfile+hours+minutes+seconds;
clock.innerHTML = timeString;
window.setTimeout("tick();", 100);
}
if (document.all){ 
 window.attachEvent('onload',tick)//对于IE 
} 
else{ 
 window.addEventListener('load',tick,false);//对于FireFox 
}

