function checkComment()
{
	s = document.comment.title.value;
	c=document.comment.comment_area.value;
	
	if(trimThis(s)=='' && trimThis(c)=='')
	{
		return false;
	}
	
	return true;
	
}
