function regKontrol(pattern, value) 
{ 
   r = new RegExp(pattern, "g"); 
   return r.test(value); 
} 

function iletisimkontrol() {
if(document.getElementById('adsoyad').value=='') { 
alert('Lütfen ad soyad bölümünü doldurunuz');
document.getElementById('adsoyad').focus();
return false;
}

if(document.getElementById('email').value == "")
{
alert("Lütfen e-mail adresinizi giriniz");
document.getElementById('email').focus();
return false;
}
patternEmail   = "^"+"([abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0-9_\.\-]+)"+"@"+"([abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0-9_\.\-]+)"+"[\.]"+"([abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0-9_\.\-]+)"+"$";
if ( !regKontrol(patternEmail,document.getElementById('email').value)) 
{ 
alert("Lütfen dogru bir e-mail adresi giriniz"); 
document.getElementById('email').value=""; 
document.getElementById('email').focus(); 
return false; 
} 

if(document.getElementById('konu').value=='') { 
alert('Lütfen konu bölümünü doldurunuz');
document.getElementById('konu').focus();
return false;
}

if(document.getElementById('mesaj').value=='') { 
alert('Lütfen mesajınızı giriniz');
document.getElementById('mesaj').focus();
return false;
}

if(document.getElementById('security_code').value=='') { 
alert('Lütfen güvenlik kodunu giriniz');
document.getElementById('security_code').focus();
return false;
}

}
