var FrontInfoSearch_showForm = {
/*校验关键词*/
 v:function( compId ){
	
	var infoform=document.getElementById(compId+"_"+"form");
	//var name_show = document.getElementById("keyWord1");
	var name_show =infoform.keyWord1;
	


	/*关键词是否为空*/
	if(trim(name_show.value).length == 0){
		/*请您提供搜索关键词。*/
		alert(i18n_FrontInfoSearch_showForm_infopublish_search_inputkeyword);
		name_show.value='';
		name_show.focus();
		return false;
	}
	/*关键词是否有非法字符*/
	if(hasSpecSymbolforInfo(name_show.value)){
		/* 请您输入汉字、字母或数字！ */
		alert(i18n_FrontInfoSearch_showForm_infopublish_search_keywordspecsymbol);
		name_show.value='';
		name_show.focus();
		return false;
	} 
	
	
	 
	//var name = document.getElementById(compId+"_"+"name");
	var name = infoform.keyWord;
	var after = encodeURIComponent(name_show.value);
	name.value = after;
   //document.getElementById(compId+"_"+"name").value = after;
   //document.getElementById("keyWord1").value = "";
    infoform.keyWord.value=after;
    infoform.keyWord1.value="";
	
    
	
	return true;
}
}


