function search_check(f) {
   if (f.keywords.value == "") {
      alert("キーワードを入力してください");
      return false;
   }
   else return true;
}