<!-- *************Tavsiye****************** -->
function kontrol(theForm)
 {
	if (theForm.ad.value == "" )
	{
		alert("İsim alanı boş bırakılamaz..");
		theForm.ad.focus();
		return(false);
  	}

	if ((theForm.posta.value == "") || (theForm.posta.value.indexOf('@',0) == -1)) 
	{
		alert("Geçerli bir e-mail adresi giriniz");
		theForm.posta.focus();
		theForm.posta.select();
		return false;
	}	
	if ((theForm.posta1.value == "") || (theForm.posta1.value.indexOf('@',0) == -1)) 
	{
		alert("Geçerli bir e-mail adresi giriniz");
		theForm.posta1.focus();
		theForm.posta1.select();
		return false;
	}	


}

function kontrols(theForm)
 {

	if ((theForm.eposta.value == "") || (theForm.eposta.value.indexOf('@',0) == -1)) 
	{
		alert("Geçerli bir e-mail adresi giriniz");
		theForm.eposta.focus();
		theForm.eposta.select();
		return false;
	}	
	

}


