function mailformat()
{
	var theValue = document.getElementById("txtEmail");
	myregexp = new RegExp("([a-zA-Z0-9-.]+\@[a-zA-Z0-9-]+[.]+[a-zA-Z0-9-.]+)");
	
	if (!theValue.value.match(myregexp))
	{
		alert("Lütfen geçerli bir mail adresi giriniz...");
		theValue.focus();
		return false;
	}
}	