function SearchKeyword(){
   var f=document.getElementById("form1")
   if(Trim(f.Top1_Keyword.value)==""){
      alert('在此输入产品名／编号')
      f.Top1_Keyword.focus(); 
   }
   else{
      location.href='../web/product.aspx?ListType=SEARCH&Keyword='+ escape(f.Top1_Keyword.value);
   }
}