//时间处理
function showdate(){
	var enabled = 0; today = new Date();
	var day; var date;
	if(today.getDay()==0) day = "星期日 "
	if(today.getDay()==1) day = "星期一 "
	if(today.getDay()==2) day = "星期二 "
	if(today.getDay()==3) day = "星期三 "
	if(today.getDay()==4) day = "星期四 "
	if(today.getDay()==5) day = "星期五 "
	if(today.getDay()==6) day = "星期六 "
	document.fgColor = " FF0072";
	date1 =(today.getFullYear()) + "年" + (today.getMonth() + 1 ) + "月" + today.getDate() + "日 " ;
	date2 = day ;
	document.write(date1.fontsize(2));
	document.write("<br/>");
	document.write(date2.fontsize(2));
	document.write("<span id='clock'></span>");
}

function showtime(){
	var now,hours,minutes,seconds,timeValue;
	now = new Date();
	hours = now.getHours();
	minutes = now.getMinutes();
	seconds = now.getSeconds();
	timeValue = (hours >= 12) ? " " : " ";
	timeValue += hours+ ":";
	timeValue += ((minutes < 10) ? "0" : "") + minutes + ":";
	timeValue += ((seconds < 10) ? "0" : "") + seconds + "";
	//var space1 = document.getelementbyid("space1");
	clock.innerHTML = timeValue;
	setTimeout("showtime()",1000);
}

//下拉框弹出
function jMenu(selObj){
		var newhref= selObj.options[selObj.selectedIndex].value;
		selObj.selectedIndex=0;
		window.location=newhref;
	   }
	   
	   
function jMenu_blank(selObj){
		var newhref= selObj.options[selObj.selectedIndex].value;
		selObj.selectedIndex=0;
		window.open(newhref);
	   }
