	function openUser()
	{
		if(document.all["t"].value.length!=0&&document.all["t"].value!="输入搜索关键字"&&document.all["t"].value!="輸入搜索關鍵字"&&document.all["t"].value!="Search")
		{
			window.open("/search.asp?t="+document.all["t"].value);
			return true;
		}
		else
		{
			alert("关键字不能为空哦");
			document.all["t"].focus();
			return false;
		}
	}
	function showText(a)
	{
		if(document.getElementById(a).style.display=="block")
		{
			document.getElementById(a).style.display="none";
		}
		else
		{
			document.getElementById(a).style.display="block";
		}
	}
	function goto()
	{
	
	}
	function mouseOver()
	{
		if(document.all["t"].value=="输入搜索关键字"||document.all["t"].value=="")
		{
			document.all["t"].value="";
		}
	}
	function mouseOut()
	{
		if(document.all["t"].value=="输入搜索关键字"||document.all["t"].value=="")
		{
			document.all["t"].value="输入搜索关键字";
		}
	}
