<!--
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(
"&nbsp;星期日",
"&nbsp;星期一",
"&nbsp;星期二",
"&nbsp;星期三",
"&nbsp;星期四",
"&nbsp;星期五",
"&nbsp;星期六");
document.write("<font color=#000000 style='font-size:9pt;font-family: 宋体'> ");
document.write(today.getYear());
document.write("年");
document.write(today.getMonth()+1);
document.write("月");
document.write(today.getDate());
document.write("日 ");
document.write(d[today.getDay()+1]);
document.write("</font> ")


function winopen(targeturl)
{
   newwin=window.open("","","scrollbars")
   if (document.all)
   {
        newwin.moveTo(0,0)
        //newwin.resizeTo(screen.availWidth,screen.availHeight)
		newwin.resizeTo(650,400)
    }
    newwin.location=targeturl
}

//-->
