/*
 * 共通JS
 */
function submitSearch() {
  var wd=document.searchform.wd.value;
  var home=document.searchform.home.value;
  for(i=0; i<document.searchform.searchtype.length; i++){
    if(document.searchform.searchtype[i].checked){
      if(document.searchform.searchtype[i].value=="web"){
        var url='http://ocnsearch.goo.ne.jp/ocn.jsp?IE=utf-8&OE=utf-8&from=ocnbizhosting&PT=ocnbizhosting&MT='+encodeURI(wd);
      }else{
        var url=home+'?s='+encodeURI(wd);
      }
    }
  }
  document.searchform.action=url;
  document.searchform.submit();
}

function submitWebSearch() {
  var wd=document.searchform.wd.value;
  var url='http://ocnsearch.goo.ne.jp/ocn.jsp?IE=utf-8&OE=utf-8&from=ocnbizhosting&PT=ocnbizhosting&MT='+encodeURI(wd);
  
  document.searchform.action=url;
  document.searchform.submit();
}

