// JavaScript Document
function CheckMail() {
    var strError = "";        // エラー文字列
    if (document.MailMe.Sender.value == "") {
        strError += "エラー : お名前を記入してください。\n";
    }

	if (document.MailMe.MailAd.value == "") {
        strError += "エラー : メールアドレスを記入してください。\n";
    }
	if (document.MailMe.MailAd2.value == "") {
        strError += "エラー : 確認用メールアドレスを記入してください。\n";
    }
	
    if (document.MailMe.MailAd.value != "" && document.MailMe.MailAd2.value != "" &&
            !CheckAddress(document.MailMe.MailAd.value)) {
        strError += "エラー : メールアドレスが正しくありません。\n";
    }
	
	if (document.MailMe.MailAd.value != "" && document.MailMe.MailAd2.value != "" &&
			document.MailMe.MailAd.value != document.MailMe.MailAd2.value) {
        strError += "エラー : メールアドレスが違います。\n";
    }
	
	
    if (strError != "") {        /* エラー時はfalseを返して送信を中止 */
        alert(strError);
        return false;
    }
 /*   document.MailMe.encoding = "text/plain";
    document.MailMe.Page.value = document.title;
    if (document.MailMe.Subject.value != "") {
        document.MailMe.action += "?subject=" + document.MailMe.Subject.value;
    }
*/
    return true;
}

// メールアドレスのチェック
function CheckAddress(mail_value) {
    var regex = /.+@.+\..+/;
    if (!mail_value.match(regex)) return false;
    return true;
}

