<script>
<!--
// Hasan Yaşar (EJDER) 21-06-2007  
function mail_kontrol(adres) {
	var r1 = new RegExp("(@.*@)|(\\.\\.)|(@\\.)|(^\\.)");
  var r2 = new RegExp("^.+\\@(\\[?)[a-zA-Z0-9\\-\\.]+\\.([a-zA-Z]{2,3}|[0-9]{1,3})(\\]?)$");
  var sonuc = !r1.test(adres) && r2.test(adres);
  if (!sonuc)
  	return false;
  return sonuc;
 }
// Kullanımı
if(mail_kontrol("admin@r10.net") == true)
 alert("Doğru Mail Adresi");
else
 alert("Yanlış Mail Adresi");
-->
</script>