function GoTo_search() 
{
	var ser_keys = document.getElementById("SearchKey").value;
	if(ser_keys=="" || ser_keys.indexOf("......") > 0)
	{
		sAlert('中国好酒招商网提示您<br>请输入要搜索的<font color=#FF0000>关键字</font>!');	
		document.searchform.SearchKey.focus();
		return false;
	}
	var search_key=encodeURIComponent(ser_keys)
	re = /%/g; 
	search_key=search_key.replace(re,'$');
	search_key=search_key.replace('......','');
	search_key=search_key.replace('!','');
	document.searchform.action='http://yiso.9998.tv/cp_'+search_key+'.htm';
	//document.searchform.submit();
	return true;
}