<!--
function PageDate()
{
	currentDate = new Date()
	with (currentDate)
          {
		day=getDay()
		month=getMonth()+1
		this.document.write('现在时间：'+getFullYear()+'年'+month+'月'+getDate()+'日')
	}
	if (day==1){document.write(' <font color=#000000 size=2pt>星期一</font>')}
	if (day==2){document.write(' <font color=#000000 size=2pt>星期二</font>')}
	if (day==3){document.write(' <font color=#000000 size=2pt>星期三</font>')}
	if (day==4){document.write(' <font color=#000000 size=2pt>星期四</font>')}
	if (day==5){document.write(' <font color=#000000 size=2pt>星期五</font>')}
	if (day==6){document.write(' <font color=#000000 size=2pt>星期六</font>')}
	if (day==0){document.write(' <font color=#000000 size=2pt>星期日</font>')}
	document.fgColor = "000000";
	document.write('<br>')
}

PageDate()

// -->