function checkform(forma) { var reEmail = /^[a-zA-Z0-9-_.]+@([a-zA-Z0-9][a-zA-Z0-9-_.]+).[a-zA-Z]{2,4}$/; if (document.getElementById("p1_fio").value == "" ) {alert("Укажите Вашу фамилию"); document.getElementById("p1_fio").focus(); return false;} if (document.getElementById("p1_name").value == "" ) {alert("Укажите Ваше имя"); document.getElementById("p1_name").focus(); return false;} if (document.getElementById("p1_otch").value == "" ) {alert("Укажите Ваше отчество"); document.getElementById("p1_otch").focus(); return false;} if (document.getElementById("p1_d_d").value==0) {alert("Укажите дату Вашего рождения"); document.getElementById("p1_d_d").focus(); return false;} if (document.getElementById("p1_d_m").value==0) {alert("Укажите дату Вашего рождения"); document.getElementById("p1_d_m").focus(); return false;} if (document.getElementById("p1_d_y").value==0) {alert("Укажите дату Вашего рождения"); document.getElementById("p1_d_y").focus(); return false;} if (document.getElementById("p1_vuz").value == "" ) {alert("Укажите учебное заведение"); document.getElementById("p1_vuz").focus(); return false;} if (document.getElementById("p1_faculty").value == "" ) {alert("Укажите факультет"); document.getElementById("p1_faculty").focus(); return false;} if (document.getElementById("p1_spec").value == "" ) {alert("Укажите специальность (направление)"); document.getElementById("p1_spec").focus(); return false;} if (document.getElementById("p1_kurs").value == "" ) {alert("Укажите курс"); document.getElementById("p1_kurs").focus(); return false;} if (document.getElementById("p1_group").value == "" ) {alert("Укажите № группы"); document.getElementById("p1_group").focus(); return false;} if (document.getElementById("p1_teacher").value == "" ) {alert("Укажите ФИО преподавателя иностранного языка"); document.getElementById("p1_teacher").focus(); return false;} if (document.getElementById("p1_t").value == "" ) {alert("Укажите контактный телефон"); document.getElementById("p1_t").focus(); return false;} var l_email = document.getElementById("p1_e").value; if ((l_email == "") || (!reEmail.test(l_email))) {alert("Введите Ваш e-mail"); document.getElementById("p1_e").focus(); return false;} return true; }