function SearchSit()
{//getElementById('SearchKeyWord'),getElementById('SearchSelect')
	var KeyWord=$("SearchKeyWord").value;
	if(KeyWord.length<1 || KeyWord=="" || KeyWord=="Keyword")
	{
		alert("Keyword");
		return false;
	}
	document.location.href=$("SearchSelect").value+"?search="+KeyWord
	//alert(document.getElementById("SearchKeyWord").value);
}

//搜索商机
function SearchBusiness(KeyControl)
{
	var KeyWord=escape(KeyControl.value);
	if(KeyWord.length<1 || KeyWord=="")
	{
		alert("Keyword");
		return false;
	}
	else
	{
		document.location.href="/Business/Default.aspx?search="+KeyWord
	}
}
//搜索产品
function SearchProduct(KeyControl)
{
	var KeyWord=escape(KeyControl.value);
	if(KeyWord.length<1 || KeyWord=="")
	{
		alert("Keyword");
		return false;
	}
	else
	{
		document.location.href="/Product/Default.aspx?search="+KeyWord
	}
}
//搜索产品
function SearchCorp(KeyControl)
{
	var KeyWord=escape(KeyControl.value);
	if(KeyWord.length<1 || KeyWord=="")
	{
		alert("Keyword");
		return false;
	}
	else
	{
		document.location.href="/Corporation/Default.aspx?search="+KeyWord
	}
}
function report(KeyControl)
{
	var KeyWord=escape(KeyControl.value);
	if(KeyWord.length<1 || KeyWord=="")
	{
		alert("您好像还没有填什么的吧！");
		return false;
	}	
}
function $(id){return document.getElementById(id);}/**/