﻿function clockon1(){
	var now=new Date();
	var year=now.getYear();
	var month=now.getMonth();
	var date=now.getDate();
	var day=now.getDay();
	var hour=now.getHours();
	var minu=now.getMinutes();
	var sec=now.getSeconds();
	var week;
	month=month+1;
	if(month<10) month="0"+month;
	if(date<10) date="0"+date;
	if(hour<10) hour="0"+hour;
	if(minu<10) minu="0"+minu;
	if(sec<10) sec="0"+sec;
	var arr_week=new Array("星期日","星期一","星期二","星期三","星期四","星期五","星期六");
	week=arr_week[day];
	var time="";
	//time=year+"年"+month+"月"+date+"日 "+week+" "+hour+":"+minu+":"+sec;
	time=year+"年"+month+"月"+date+"日 "+week;
    var time1="";
    time1= hour+":"+minu+":"+sec;
		document.getElementById("nowDiv").innerHTML=time;
	document.getElementById("nowDiv1").innerHTML=time1;
	var timer=setTimeout("clockon1()",200);
} 



function checkSelectType()
{
var type=document.getElementById("select").value;
var textin=document.getElementById("Text1").value;
if(type==""||textin=="")
{
window.alert("请选择搜索类型和内容");
return false;
}
else
{

if(type=="hy")
{
window.location="HangYe.aspx?text="+ textin +"";
}

if(type=="kx")
{
window.location="Dongtai.aspx?text="+ textin +"";
}

if(type=="zh")
{
window.location="ZhanHui.aspx?text="+ textin +"";
}

if(type=="rc")
{
window.location="RenCai.aspx?text="+ textin +"";
}
}
}
