function YorumFormKontrol()
{
	if(document.formYorum.YorumAdSoyad.value.length==0){alert('Lütfen Ad-Soyad veya Takma isminizi giriniz');document.formYorum.YorumAdSoyad.focus();return false;}
	if(document.formYorum.YorumEposta.value.length==0){alert('Lütfen E-Posta adresinizi giriniz.\nNot: Kesinlikle sitede yayınlanmayacaktır.');document.formYorum.YorumEposta.focus();return false;}
	else
	{
		if(((document.formYorum.YorumEposta.value.indexOf('@')==0)||(document.formYorum.YorumEposta.value.indexOf('.')==0))||(document.formYorum.YorumEposta.value.length<=8))
		{
			alert('Lütfen Geçerli E-Posta adresi giriniz!');
			document.formYorum.YorumEposta.focus();
			return false;
		}
	}	
	if(document.formYorum.YorumIcerik.value.length==0){alert('Lütfen Yorumunuzu giriniz!');document.formYorum.YorumIcerik.focus();return false;}
	if(document.formYorum.strCAPTCHA.value.length==0){alert('Güvenlik Kodunu boş bırakmayınız!');document.formYorum.strCAPTCHA.focus();return false;}
	
}