	function SearchEntry()
	{
		if(Form1.txtkey.value==''&&Form1.txtname.value=='')
		{
			alert('请输入要查询的信息');
			return;
		}
		Form1.hidden.value="search";
		Form1.submit();

	}
	
	function search()
	{
		if(Form1.txtsearch.value=='')
		{
			alert('请输入要查询的信息');
			return;
		}
	
		window.document.location='get/search/index.asp?keyword='+Form1.txtsearch.value;
	}
