
function check() /* For Guest Book */
{
    var reMail = /^([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})$/;
    
    if (document.form1.name.value=="") {
        window.alert("請輸入暱稱");
        document.form1.name.focus();		
        return (false);
    } else if (reMail.test(document.form1.email.value) == false) {
        window.alert("請正確輸入電子信箱");
        document.form1.email.focus();		
        return (false);
    } else if (document.form1.content.value=="") {
        window.alert("請輸入內容");
        document.form1.content.focus();		
        return (false);
    }
    return true;
}
