function next()
{
    var theform = document.contact_us;

    if( isBlank( theform.app_name_chinese.value ) ){
        window.alert("请填写你的中文姓名!");
        theform.app_name_chinese.focus();
        return;
    }

    if( isBlank( theform.app_birthday.value ) ){
        window.alert("请填写你的出生日期!");
        theform.app_birthday.focus();
        return;
    }
    if( IsValidDate( theform.app_birthday.value ) == false ){
        window.alert("请按正确的格式填写日期!");
        theform.app_birthday.focus();
        return;
    }

    if( isBlank( theform.app_city.value ) ){
        window.alert("请填写你的户口所在城市!");
        theform.app_city.focus();
        return;
    }

    if( isBlank( theform.app_id_card.value ) ){
        window.alert("请填写你的身份证号码!");
        theform.app_id_card.focus();
        return;
    }

    if( isBlank( theform.app_tel_home.value ) ){
        window.alert("请填写你的联系电话号码!");
        theform.app_tel_home.focus();
        return;
    }

    var sValue = theform.app_email.value;
    if( sValue == "" || (sValue.search(/\S+@+\S+\.\S+/) == -1) ){
        window.alert("请填写合法的EMail地址!");
        theform.app_email.focus();
        return;
    }

    if( isBlank( theform.app_lang1.value ) ){
        window.alert("请填写你的第一外语名称!");
        theform.app_lang1.focus();
        return;
    }

    if( isBlank( theform.app_date_graduation.value ) ){
        window.alert("请填写你的毕业日期!");
        theform.app_date_graduation.focus();
        return;
    }

    if( isBlank( theform.app_academy.value ) ){
        window.alert("请填写你最后毕业的学校!");
        theform.app_academy.focus();
        return;
    }

    if( isBlank( theform.app_major.value ) ){
        window.alert("请填写你的专业!");
        theform.app_major.focus();
        return;
    }


    if( IsValidDate( theform.app_date_graduation.value ) == false ){
        window.alert("请按正确的格式填写日期!");
        theform.app_date_graduation.focus();
        return;
    }
    theform.submit();
}
// JavaScript Document