// KONTROL FORMU
function form_kontrol() {

if(document.getElementById("ad").value==""){
window.alert("Ad-Soyad Bilginizi Girmediniz..");
document.getElementById("ad").focus();
return false;
}

if(document.getElementById("soyad").value==""){
window.alert("Soyadinizi Girmediniz..");
document.getElementById("soyad").focus();
return false;
}

if(document.getElementById("adr").value==""){
window.alert("Adres Bilginizi Girmediniz..");
document.getElementById("adr").focus();
return false;
}

if(document.getElementById("ev_tel").value==""){
window.alert("Telefon Bilginizi Girmediniz..");
document.getElementById("ev_tel").focus();
return false;
}

if(document.getElementById("d_tarih").value==""){
window.alert("Došum Tarihi Bilginizi Girmediniz..");
document.getElementById("d_tarih").focus();
return false;
}


if(document.getElementById("d_yer").value==""){
window.alert("Došum Yeri Bilginizi Girmediniz..");
document.getElementById("d_yer").focus();
return false;
}
if(document.getElementById("eposta").value==""){
window.alert("E-Posta Adresinizi Girmediniz..");
document.getElementById("eposta").focus();
return false;
}

if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(document.getElementById('eposta').value)){
return true;
} else {
window.alert("Mail Adresinde Bir Hata Var..");
document.getElementById("eposta").focus();
return false;
}



}