function checkform()
{
		var rad_val = 0;
		for (var i=0; i < document.formH.score.length; i++)	{
		   if (document.formH.score[i].checked) {
		      rad_val = document.formH.score[i].value;
	      }
   		}
		
		if (rad_val < 4 && document.formH.comment.value == 'Please leave a constructive comment to help us identify how we can improve this page.')
		{		
			alert("If you have rated this page below 4 please leave a \ncomment on what you would like changed or added.");
			return false;
		}
		else
		{
			return true;
		}
		return false;
}
