function uyeol(theForm)
 {
	if (theForm.ad.value == "" )
	{
		alert("İsim alanı boş bırakılamaz.");
		theForm.ad.focus();
		return(false);
  	}
	if (theForm.soyad.value == "" )
	{
		alert("Soyad alanı boş bırakılamaz.");
		theForm.soyad.focus();
		return(false);
  	}
	if ((theForm.posta.value == "") || (theForm.posta.value.indexOf('@',0) == -1)) 
	{
		alert("Email adresiniz geçersiz");
		theForm.posta.focus();
		theForm.posta.select();
		return false;
	}	
	if (theForm.k_adi.value == "" )
	{
		alert("Kullanıcı Adı boş bırakılamaz.");
		theForm.k_adi.focus();
		return(false);
  	}
	if (theForm.sifresi.value == "" )
	{
		alert("Şifre alanı boş bırakılamaz.");
		theForm.sifresi.focus();
		return(false);
  	}
	if (theForm.kod.value == "" )
	{
		alert("Lütfen güvenlik Kodunu Giriniz.");
		theForm.kod.focus();
		return(false);
  	}


}

function hatirlat(theForm)
 {
	if ((theForm.eposta.value == "") || (theForm.eposta.value.indexOf('@',0) == -1)) 
	{
		alert("Email adresiniz geçersiz");
		theForm.eposta.focus();
		theForm.eposta.select();
		return false;
	}
	if (theForm.kod.value == "" )
	{
		alert("Lütfen güvenlik Kodunu Giriniz.");
		theForm.kod.focus();
		return(false);
  	}	


}

