﻿function MailSend()
{
    var email = document.getElementById("txtMailAddress").value;
    
    var filter=/^([\w-]+(?:\.[\w-]+)*)@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$/i ;
    if (filter.test(email))
    {
       window.open('/mail/send.asp?mail='+email,'email','height=350,width=400,left=100, top=100,resizable=no,scrollbars=no,status=yes');
    }
    else
    {
       alert("Lütfen geçerli bir mail adresi giriniz!")
    }
}
