function _search()
{
	var strKeyword = document.all["k"].value;

	if(strKeyword=="" )
	{
		alert("请输入游戏关键字!");
		key.focus();
		return;
	}
	if(strKeyword.indexOf("'")!=-1||strKeyword.indexOf(",")!=-1||strKeyword.indexOf("%")!=-1)
	{
		alert("请不要输入非法字符!");
		key.focus();
		key.value="";
		return;
	}

	document.location.href = "http://www.xiaodaohui.com/search.asp?k="+escape(strKeyword);
}

function neo_search()
{
	var strKeyword = document.all["k"].value;
	var strType = document.all["s_type"].value;
	var strArea = document.all["s_area"].value;

	if(strKeyword=="" )
	{
		alert("请输入游戏关键字!");
		key.focus();
		return;
	}
	if(strKeyword.indexOf("'")!=-1||strKeyword.indexOf(",")!=-1||strKeyword.indexOf("%")!=-1)
	{
		alert("请不要输入非法字符!");
		key.focus();
		key.value="";
		return;
	}

	document.location.href = "http://www.xiaodaohui.com/search.asp?k="+escape(strKeyword)+"&a="+escape(strArea)+"&t="+escape(strType);
}