﻿// Java Document
<!--
function checkIfFilled() {
    if (document.mailform.name1.value=='') {
        window.alert('お名前を入力してください');
        return(false);
        }
    if (document.mailform.name2.value=='') {
        window.alert('お名前のフリガナを入力してください');
        return(false);
        }
    if ((document.mailform.tel.value=='')&&(document.mailform.email.value=='')) {
        window.alert('電話番号かメールアドレスのどちらかを入力してください');
        return(false);
        }
    if (document.mailform.check.checked == false) {
        window.alert('送信確認のチェックを入れてください');
        return(false);
        }
    return(true);
}

function checkIfFilled2() {
    if (document.mailform.type.value==0) {
        window.alert('物件種別を選択してください');
        return(false);
        }
    if (document.mailform.zip.value=='') {
        window.alert('物件の所在地を入力してください');
        return(false);
        }
    if (document.mailform.name1.value=='') {
        window.alert('お名前を入力してください');
        return(false);
        }
    if (document.mailform.name2.value=='') {
        window.alert('お名前のフリガナを入力してください');
        return(false);
        }
    if ((document.mailform.tel.value=='')&&(document.mailform.email.value=='')) {
        window.alert('電話番号かメールアドレスのどちらかを入力してください');
        return(false);
        }
    if (document.mailform.check.checked == false) {
        window.alert('送信確認のチェックを入れてください');
        return(false);
        }
    return(true);
}
//-->
