
function check_comment(myForm) 
{	

	if(!check_value(myForm.title,'Please enter the comment title.'))
		return false;
		
	if(!check_textarea(myForm.comment,'Please enter the text of your comment.'))
		return false;

}
