﻿// Java Document
<!--
function checkIfFilled() {
    if (document.mailform.email.value=='') {
        window.alert('メールアドレスが入力されていません');
        return(false);
        }
    return(true);
}
//-->