
function checkf()
{
var str=document.form.keyword;  
	if (str.value.replace(/^\s+|\s+$/g,"").length<3)
	{
		alert("关键字的长度不能少于3个字符！");
		str.focus(); 
		return false;
	}	
	
	var str=document.form.keyword;  
if(str.value.replace(/^\s+|\s+$/g,"")==""||str.value=="请输入搜索关键字")  
{  
alert("请输入搜索的关键字！");  
str.focus();  
return false;   
} 
	return true;
}


 function showbg(id,strType){ 
    var str='';  
    for (i=1;i<=4;i++) {
       str="h"+i;
       
       if(i==id){
	 document.getElementById(str).className="t_dh_bg";
          if(i!=1){
             var str1="h"+(i-1);
             document.getElementById(str1).className="";
          }
       }else{
	 document.getElementById(str).className="";
       }
    }
    document.getElementById("type").value=strType; 
 }


  
