function submit(objForm){
  objForm.submit();
}

function setActionSubmit(objForm, strAction){
  objForm.action = strAction;
  objForm.submit();
}

function moveLocation(strUrl){
  location.href = strUrl;
}

function setParam(obj, value) {
	obj.value = value;
}

function setStartPage(obj, url) {
  var agent=navigator.userAgent;
  var ie=agent.indexOf("MSIE");
  var iever=parseInt(agent.substring(ie+5, ie+6));
  var os=agent.indexOf("Windows");
  if((ie > 0) && (iever >= 5) && (os > 0) && !window.opera){
      var StartPage=url;
      obj.style.behavior="url('#default#homepage')";
      obj.setHomePage(StartPage);
      if(confirm("設定したスタートページに移動しますか？")){
          obj.navigateHomePage();
      }else{
          return;
      }
  }else{
      alert("IEのみでサポートされています");
  }
}