function checkBayiForm() { f = document.forms["bayi"]; emailRE = RegExp(/^([\w-]+(?:\.[\w-]+)*)@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$/i); phoneRE = RegExp(/\d{7,}/); var err = false; //if (emailRE.test(f.email.value) != true) { err = true; f.email.style.backgroundColor = '#fef5ce'; } //else { f.email.style.backgroundColor = '#fff'; } if (f.ad_soyad.value == '') { err = true; f.ad_soyad.style.backgroundColor = '#fef5ce'; } else { f.ad_soyad.style.backgroundColor = '#fff'; } if (f.unvan.value == '') { err = true; f.unvan.style.backgroundColor = '#fef5ce'; } else { f.unvan.style.backgroundColor = '#fff'; } if (f.adres.value == '') { err = true; f.adres.style.backgroundColor = '#fef5ce'; } else { f.adres.style.backgroundColor = '#fff'; } if (f.sektor.value == '') { err = true; f.sektor.style.backgroundColor = '#fef5ce'; } else { f.sektor.style.backgroundColor = '#fff'; } if (f.city.value == '') { err = true; f.city.style.backgroundColor = '#fef5ce'; } else { f.city.style.backgroundColor = '#fff'; } //if (f.website.value == '') { err = true; f.website.style.backgroundColor = '#fef5ce'; } //else { f.website.style.backgroundColor = '#fff'; } if (phoneRE.test(f.tel_gsm.value) != true && phoneRE.test(f.tel_sabit.value) != true) { err = true; f.tel_gsm.style.backgroundColor = '#fef5ce'; f.tel_sabit.style.backgroundColor = '#fef5ce'; } else { f.tel_gsm.style.backgroundColor = '#fff'; f.tel_sabit.style.backgroundColor = '#fff'; } if (err == true) { alert("Lütfen gereken bilgileri giriniz."); return false; } }