function CheckCommentForm()
	{
		if(document.CommentForm.StrAuthorName.value=="")
	{
		window.alert ("Lütfen adınızı ve soyadınızı yazınız !");
			document.CommentForm.StrAuthorName.focus()
		return false;
	}
		if(document.CommentForm.StrAuthorEmail.value=="")
	{
		window.alert ("Lütfen email adresinizi yazınız !");
			document.CommentForm.StrAuthorEmail.focus()
		return false;
	}
		if(document.CommentForm.StrComment.value=="")
	{
		window.alert ("Lütfen haber yorumuzunu yazınız !");
			document.CommentForm.StrComment.focus()
		return false;
	}
	}

function CheckAdviceForm()
	{
		if(document.AdviceForm.StrYourName.value=="")
	{
		window.alert ("Lütfen adınızı ve soyadınızı yazınız !");
			document.AdviceForm.StrYourName.focus()
		return false;
	}
		if(document.AdviceForm.StrYourEmail.value=="")
	{
		window.alert ("Lütfen email adresinizi yazınız !");
			document.AdviceForm.StrYourEmail.focus()
		return false;
	}
		if(document.AdviceForm.StrReceiverName.value=="")
	{
		window.alert ("Lütfen tavsiye edeceğiniz kişinin adını yazınız !");
			document.AdviceForm.StrReceiverName.focus()
		return false;
	}
		if(document.AdviceForm.StrReceiverEmail.value=="")
	{
		window.alert ("Lütfen tavsiye edeceğiniz kişinin email adresini yazınız !");
			document.AdviceForm.StrReceiverEmail.focus()
		return false;
	}
	}

function CheckMessageForm()
	{
		if(document.MessageForm.StrAuthorName.value=="")
	{
		window.alert ("Lütfen adınızı ve soyadınızı yazınız !");
			document.MessageForm.StrAuthorName.focus()
		return false;
	}
		if(document.MessageForm.StrAuthorEmail.value=="")
	{
		window.alert ("Lütfen email adresinizi yazınız !");
			document.MessageForm.StrAuthorEmail.focus()
		return false;
	}
		if(document.MessageForm.StrBody.value=="")
	{
		window.alert ("Lütfen mesajınızı yazınız !");
			document.MessageForm.StrBody.focus()
		return false;
	}
	}

function CheckAuthorLoginForm()
	{
		if(document.AuthorLoginForm.StrUserName.value=="")
	{
		window.alert ("Lütfen kullanıcı adınızı yazınız !");
			document.AuthorLoginForm.StrUserName.focus()
		return false;
	}
		if(document.AuthorLoginForm.StrUserPass.value=="")
	{
		window.alert ("Lütfen kullanıcı şifrenizi yazınız !");
			document.AuthorLoginForm.StrUserPass.focus()
		return false;
	}
	}

function CheckArticleForm()
	{
		if(document.ArticleForm.StrSubject.value=="")
	{
		window.alert ("Lütfen makale başlığını yazınız !");
			document.ArticleForm.StrSubject.focus()
		return false;
	}
		if(document.ArticleForm.StrBody.value=="")
	{
		window.alert ("Lütfen makalenizi yazınız !");
			document.ArticleForm.StrBody.focus()
		return false;
	}
	}

function CheckContactForm()
	{
		if(document.ContactForm.StrName.value=="")
	{
		window.alert ("Lütfen adınızı ve soyadınızı yazınız !");
			document.ContactForm.StrName.focus()
		return false;
	}
		if(document.ContactForm.StrEmail.value=="")
	{
		window.alert ("Lütfen email adresinizi yazınız !");
			document.ContactForm.StrEmail.focus()
		return false;
	}
		if(document.ContactForm.StrSubject.value=="")
	{
		window.alert ("Lütfen iletişim konusunu yazınız !");
			document.ContactForm.StrSubject.focus()
		return false;
	}
		if(document.ContactForm.StrBody.value=="")
	{
		window.alert ("Lütfen mesajınızı yazınız !");
			document.ContactForm.StrBody.focus()
		return false;
	}
	}
