function setcmd(cmd){

   window.top.document.frmSearch.srch_cmd.value=cmd;

}

function searchfunc(cmd){

   window.top.document.frmSearch01.srch_cmd.value=cmd;
   switch(cmd){
      case "genre":
         if(window.top.document.frmSearch01.genre.value==0) return;
         window.top.document.frmSearch01.srch_val.value=window.top.document.frmSearch01.genre.value;
      break;
      case "area":
         if(window.top.document.frmSearch01.area.value==0) return;
         window.top.document.frmSearch01.srch_val.value=window.top.document.frmSearch01.area.value;
      break;
      case "office":
         if(window.top.document.frmSearch01.office.value==0) return;
         window.top.document.frmSearch01.srch_val.value=window.top.document.frmSearch01.office.value;
      break;
      case "ofcid":
         if(window.top.document.frmSearch01.ofcid.value=="") return;
         window.top.document.frmSearch01.srch_val.value=window.top.document.frmSearch01.ofcid.value;
      break;
      case "keywd":
         if(window.top.document.frmSearch01.keywd.value=="") return;
         window.top.document.frmSearch01.srch_val.value=window.top.document.frmSearch01.keywd.value;
      break;
      case "detail":
         window.top.document.frmSearch01.action="detailsearch.php";
      break;
      default:
         return;
   }

	window.top.document.frmSearch01.submit();
}
