function regKontrol(pattern, value)
{
   r = new RegExp(pattern, "g");
   return r.test(value);
}
 
function formKontrol(mailForm)
{
     patternEposta   = "^"+"([abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0-9_\.\-]+)"+"@"+"([abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0-9_\.\-]+)"+"[\.]"+"([abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0-9_\.\-]+)"+"$";
           
     if ( !regKontrol(patternEposta,mailForm.email.value))
     {
          alert("Lütfen Geçerli Bir E-posta Adresi Giriniz.");
          mailForm.email.value="";
          mailForm.email.focus();
          return false;
     }
     return true;
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}