// JavaScript Document
<!--
var Clicked = false;
function SubmitEnter(){
  if (document.MFP.mail.value != document.MFP.mail_kakunin.value) {
    alert("メールアドレスが確認用と異なっています。");
    return false;
  } else {
    Clicked = true;
    return true;
  }
}
//-->