function member_check(member){

    function name_check(author) {
        for (var i = 0; i < author.length; ++i) {
            var c = author.charCodeAt(i);
            if (c < 256 || (c >= 0xff61 && c <= 0xff9f)) {
            return false;
            }
        }
        return true;
    }
    
    if (!name_check(member.mail_author.value)) {
        window.alert("代表者氏名：全角で入力してください");
        return false;
    }

    if(member.mail_tel.value.match(/[^0-9]+/)){
        window.alert('電話番号：半角数字で入力してください');
        return false;
    }
    
    if(member.mail_zip_code.value.match(/[^0-9]+/)){
        window.alert('郵便番号：半角数字で入力してください');
        return false;
    }

    else{
        return true;
    }
}


function contact_check(contact){

    if(contact.mail_tel.value.match(/[^0-9]+/)){
        window.alert('電話番号：半角数字で入力してください');
        return false;
    }
    
    if(contact.mail_zip_code.value.match(/[^0-9]+/)){
        window.alert('郵便番号：半角数字で入力してください');
        return false;
    }
    
    if (contact.mail_salon_name.value == false){
        for (i = 0; i < document.mail_form.mail_business_type.length; i++){
            if (document.mail_form.mail_business_type[i].checked) {
                r2 = document.mail_form.mail_business_type[i].value;
                if(r2 == "理・美容室" || r2 == "卸・ディーラー業"){
                    alert("サロン名・会社名：ご入力ください");
                    return false;
                }
            }
        }
    }

    else{
        return true;
    }
}

