function submitSearch(url,keyText){
	//alert(url+keyText.val());
	if('在这里输入关键词，快速找到您想要的产品…' == keyText.val() || ""==keyText.val()){
		keyText.focus();
	}else{
		window.location.href = url+encodeURI(keyText.val());
	}
	return false;
}


