
////////////////////////////////////////////////////////////显示日期和时间
function WriteDate(){
zhou=new Array("日","一","二","三","四","五","六");
now=new Date();
year=now.getFullYear();
month=now.getMonth();
month++;
day=now.getDate();
xinqi=now.getDay();
xinqi="星期"+zhou[xinqi];
hour=now.getHours();
min=now.getMinutes();
sec=now.getSeconds();
if (month<10) month=""+""+month;
if (day<10) day=""+""+day;
if (hour<10) hour=""+""+hour;
if (min<10) min=""+""+min;
if (sec<10) sec=""+""+sec;
datetime=("<b><font color=252C78 face=宋体 size=3>");

datetime+=(month+"月"+day+"日 " + xinqi);
datetime+=("</font></b>");
time.innerHTML=datetime;
}
window.setTimeout("WriteDate()",1000);
//////////////////////////////////////////////////////显示日期和时间结束


////////////////////////////////////////////////////// 6-9月显示招生信息
now=new Date();
year=now.getFullYear();
month=now.getMonth();
month++;
if (month>5 && month<10){
document.write("<div style=position:absolute;height:80pt;top:expression(document.body.clientHeight-this.style.pixelHeight+document.body.scrollTop);font:9pt;><a href=tencent://message/?uin=971385779&Site=http://www.gdfi.com.cn&Menu=yes><img src=http://www.gdfi.com.cn/2005/recruit/images/zsqq.jpg border=0></a></div>");
document.write("<div style=position:absolute;right:20pt;height:80pt;top:expression(document.body.clientHeight-this.style.pixelHeight+document.body.scrollTop);font:9pt;><a href=http://www.gdfi.com.cn/zsjy/table.htm><img src=http://www.gdfi.com.cn/2005/recruit/images/wsbm.jpg border=0></a></div>");
}

/////////////////////////////////=====================6-9月显示招生信息 结束
