	function Check()
	{
       		if (document.addcomment.user.value == "" || document.addcomment.user.value.length < 3 )
		{
			alert("İsim boş bırakılamaz (En az 3 harf).");
			document.addcomment.user.focus();
			return false;
		}
       		if (document.addcomment.comment.value == "" || document.addcomment.comment.value.length < 10 )
		{
			alert("Yorum çok kısa.");
			document.addcomment.comment.focus();
			return false;
		}
       		else if (document.addcomment.mail.value == ""
			|| document.addcomment.mail.value.length < 3
			|| document.addcomment.mail.value.indexOf(' ') > -1
			|| document.addcomment.mail.value.indexOf('@') < 0 )
		{
			alert("E-Mail adresinizi yazmanız gereklidir (Bu bilgi gizli tutulacak).");
			document.addcomment.mail.focus();
			return false;
		}
		else
		{
			document.addcomment.submit();
			document.addcomment.gonder.disabled=true;
		}
	}
