var ctimer; 

function init(){
	if (document.all){ 
		//tim2.style.left=tim1.style.posLeft; 
		//tim2.style.top=tim1.style.posTop+tim1.offsetHeight-6; 
		settimes(); 
	} 
} 

function settimes(){ 
	var time= new Date(); 
	hours= time.getHours(); 
	mins= time.getMinutes(); 
	secs= time.getSeconds(); 
	if (hours<10) 
		hours="0"+hours; 
	if(mins<10) 
		mins="0"+mins; 
	if (secs<10) 
		secs="0"+secs; 
	tim1.innerHTML="&nbsp;<b>µ±Ç°Ê±¼ä£º</b>"+hours+":"+mins+":"+secs 
	//tim2.innerHTML=hours+":"+mins+":"+secs 
	ctimer=setTimeout('settimes()',960); 
}


function montharr(m0, m1, m2, m3, m4, m5, m6, m7, m8, m9, m10, m11) { 
	this[0] = m0; 
	this[1] = m1; 
	this[2] = m2; 
	this[3] = m3; 
	this[4] = m4; 
	this[5] = m5; 
	this[6] = m6; 
	this[7] = m7; 
	this[8] = m8; 
	this[9] = m9; 
	this[10] = m10; 
	this[11] = m11; 
} 

function calendar() { 
	var monthNames = "JanFebMarAprMayJunJulAugSepOctNovDec"; 
	var today = new Date(); 
	var thisDay; 
	var monthDays = new montharr(31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31); 

	year = today.getYear() + 1900; 
	thisDay = today.getDate(); 

	if (((year % 4 == 0) && (year % 100 != 0)) || (year % 400 == 0)) monthDays[1] = 29; 
	nDays = monthDays[today.getMonth()]; 
	firstDay = today; 
	firstDay.setDate(1); // works fine for most systems 
	testMe = firstDay.getDate(); 
	if (testMe == 2) firstDay.setDate(0); 
	startDay = firstDay.getDay(); 

	document.write('<table border="0" cellspacing="0" cellpadding="1" align="CENTER" bgcolor="red"><TR><TD><table border="0" cellspacing="1" cellpadding="1" bgcolor="#ffeeee">'); 
	document.write('<TR><th colspan="7" bgcolor="#ffffcc">'); 
	var dayNames = new Array("\u661f\u671f\u65e5","\u661f\u671f\u4e00","\u661f\u671f\u4e8c","\u661f\u671f\u4e09","\u661f\u671f\u56db","\u661f\u671f\u4e94","\u661f\u671f\u516d"); 
	var monthNames = new Array("1\u6708","2\u6708","3\u6708","4\u6708","5\u6708","6\u6708","7\u6708","8\u6708","9\u6708","10\u6708","11\u6708","12\u6708"); 
	var now = new Date(); 
	document.write("<font style=font-size:9pt;Color:#990000>" + "\u516c\u5143 " + now.getYear() + "\u5e74" + monthNames[now.getMonth()] + "" + now.getDate() + "\u65e5 " + dayNames[now.getDay()] + "</FONT>"); 
	document.writeln('</TH></TR><TR><TH BGCOLOR="red"><font style="font-size:9pt;Color:White">\u65e5</FONT></TH>'); 
	document.writeln('<th bgcolor="#ff6699"><font style="font-size:9pt;Color:White">\u4e00</FONT></TH>'); 
	document.writeln('<TH BGCOLOR="#ff6699"><font style="font-size:9pt;Color:White">\u4e8c</FONT></TH>'); 
	document.writeln('<TH BGCOLOR="#ff6699"><font style="font-size:9pt;Color:White">\u4e09</FONT></TH>'); 
	document.writeln('<TH BGCOLOR="#ff6699"><font style="font-size:9pt;Color:White">\u56db</FONT></TH>'); 
	document.writeln('<TH BGCOLOR="#ff6699"><font style="font-size:9pt;Color:White">\u4e94</FONT></TH>'); 
	document.writeln('<TH BGCOLOR="#ff6699"><font style="font-size:9pt;Color:White">\u516d</FONT></TH>'); 
	document.writeln("</TR><TR>"); 
	column = 0; 
	for (i=0; i<startDay; i++) { 
		document.writeln("\n<TD><FONT style=font-size:9pt> </FONT></TD>"); 
		column++; 
	} 

	for (i=1; i<=nDays; i++) {
		if (i == thisDay) { 
			document.writeln('</TD><td align="CENTER" bgcolor="#ffefef"><a href="calendar.do"><FONT style=font-size:9pt;Color:red><B>') 
		} 
		else { 
			document.writeln('</TD><TD BGCOLOR="#FFFFFF" ALIGN="CENTER"><FONT style=font-size:9pt;font-family:Arial;font-weight:bold;Color:#660033>'); 
		} 
		document.writeln(i); 
		if (i == thisDay) document.writeln("</FONT></a></TD>") 
		column++; 
		if (column == 7) { 
			document.writeln("<TR>"); 
			column = 0; 
		} 
	} 
	//document.writeln('<TR><td colspan="7" align="CENTER" valign="TOP" bgcolor="#dd3333"><form name="clock" onSubmit="0"><FONT style=font-size:9pt;Color:#ffffff>\u5f53\u524d\u65f6\u95f4  <INPUT TYPE="Text" NAME="face"  size="12" ALIGN="TOP"></FONT></TD></TR></TABLE></TD></TR></TABLE></form>'); 
	document.writeln('<TR><td colspan="7" align="CENTER" valign="TOP" bgcolor="#ffffff"><a href="calendar.do"><img border="0" src="images/index_88.gif" width="92" height="26"></a></TD></TR></TABLE></TD></TR></TABLE>'); 
	//document.writeln('</TABLE></TD></TR></TABLE>');
} 
