

function checkComment(cur){ // ArticleRating
CommentLength = cur.Comment.value.length;
	if (CommentLength>249){
		alert("Please enter a 'Comment' less than 250 characters, currently there are " + CommentLength + " characters.");
		cur.Comment.focus();
		return false;
	}	
}


