SubmitCheck=false;

/* EnterSubmit 抑制 */
function submit(fOBJ){
   if(!SubmitCheck){
      SubmitCheck=true;
      fOBJ.submit();
   }else{ bottonAlert(); }
}
function bottonAlert() {
   Check = navigator.userAgent.indexOf(";");
   if(Check != -1 && navigator.userAgent.substring(Check+2,Check+10)=="MSIE 3.0"){
      return false;
   }else{
      return false;
   }
}
