﻿function checkIfFilled() {
    if (document.forms[0].name.value=='') {
        window.alert('お名前をご入力お願いします。');
        return(false);
        }
    if (document.forms[0].email.value=='') {
        window.alert('メールアドレスをご入力お願いします。');
        return(false);
        }
    if (document.forms[0].query_text.value=='') {
        window.alert('お問い合わせ内容欄をご入力お願いします。');
        return(false);
        }
    return(true);
}
