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);
  	}	


}

function odeme(theForm)
 {
	if (theForm.oy.value == "" )
	{
		alert("İsim alanı boş bırakılamaz.");
		theForm.oy.focus();
		return(false);
  	}
	if ((theForm.oemail.value == "") || (theForm.oemail.value.indexOf('@',0) == -1)) 
	{
		alert("Email adresiniz geçersiz");
		theForm.oemail.focus();
		theForm.oemail.select();
		return false;
	}	
}
<!-- *************İletişim****************** -->
function iletisim(theForm)
 {
	if ((theForm.emaili.value == "") || (theForm.emaili.value.indexOf('@',0) == -1)) 
	{
		alert("Email adresiniz geçersiz");
		theForm.emaili.focus();
		theForm.emaili.select();
		return false;
	}	

	if (theForm.konu2.value == "" )
	{
		alert("Lütfen Mesaj Konusunu Yazınız.");
		theForm.konu2.focus();
		return(false);
  	}
	if (theForm.mesaj.value == "" )
	{
		alert("Lütfen Mesajınızı Yazınız.");
		theForm.mesaj.focus();
		return(false);
  	}
	if (theForm.kod.value == "" )
	{
		alert("Lütfen Güvenlik Kodunu Giriniz.");
		theForm.kod.focus();
		return(false);
  	}

}

