function $(id){document.getElementById(id);}


 function checksearch()
 {
  if (document.searchfom.keyword.value=="" || document.searchfom.keyword.value=="关键字搜索...")
     { 
         alert("对不起，您忘记输入关键字了！");
         document.searchfom.keyword.focus();
         return false;
      }
  else
   return true;
   //document.searchfom.action="News_search.asp";
   //document.searchfom.submit();
 }      
