
function GetDate()
{
    var arrWeek = new Array(6);
    arrWeek[0] = "日";
    arrWeek[1] = "一";
    arrWeek[2] = "二";
    arrWeek[3] = "三";
    arrWeek[4] = "四";
    arrWeek[5] = "五";
    arrWeek[6] = "六";
    var today = new Date();
    var theWeek = arrWeek[today.getDay()];
    var theDay = today.getDate();
    var theMonth = today.getMonth() + 1;
    var theYear = today.getYear();
    html = "<span style='font-size:11px;font-family:verdana;color:#FF6600;'>";
    html += "今天是" + theYear + "年" + theMonth + "月" + theDay + "日，开封教育学院欢迎您的光临！";
    document.getElementById("time").innerHTML = html;
}

function lenTime(sTime)
{
	var returnTime = sTime;
	var len = returnTime.length;
	if (len == 1)
	{
		returnTime = "0" + returnTime;
	}
  return returnTime;
}

function Collection()
{
    window.external.addFavorite('http://www.kfie.cn','开封教育学院')
}

function Count2008()
{
　　var timedate= new Date("August 9,2008");
　　var times = "";
　　var now = new Date();
　　var date = timedate.getTime() - now.getTime();
　　var time = Math.floor(date / (1000 * 60 * 60 * 24));
　　if (time >= 0);
    times = "距北京奥运开幕还有<font style='color:#FF6600;line-height:32px;font-family:Verdana;font-size:18px;'><b>"+time +"</b></font>天</span>";
    return times;
}
