function sendMail() {
    //入力チェック
    if (chkAddress(document.sendmailForm.address.value)) {
        window.open('about:blank', 'meilWindow'
                  , 'width=300,height=100');
        document.sendmailForm.target = "meilWindow";
        document.sendmailForm.action = "sendmail.php";
        document.sendmailForm.submit();
    }
}

function chkAddress(str) {
   var Seiki=/[!#-9A-~]+@+[a-z0-9]+.+[^.]$/i;
   
  /* 入力された値がパターンにマッチするか調べる */
   if(str!=""){
       if(str.match(Seiki)){
           return true;
       }else{
           alert("メールアドレスの形式が不正です");
           return false;
       }
   }else{
       /* 何も入力されていない場合はアラート表示 */
       alert("メールアドレスを入力してください");
       return false;
   }
}
