function Form_Validator(theForm)
{
	if (theForm.DISPLAY_Name.value == "")
		{
			alert("Please include your name.");
			theForm.DISPLAY_Name.focus();
			return (false);
		  }
	if (theForm.DISPLAY_Email.value == "") 
		{
			alert("Please include your email address so that someone can reply to this message.");
			theForm.DISPLAY_Email.focus();
			return (false);
		  }
	if (theForm.DISPLAY_Comments.value == "")
		{
			alert("Please include your quesiton or comment.");
			theForm.DISPLAY_Comments.focus();
			return (false);
		  }
	var com1=theForm.DISPLAY_Comments.value.toString();
	var com2=com1.toLowerCase();
	if (com2.indexOf("http://") > -1)
		{
			alert("You cannot send hyperlinks in the comments.");
			theForm.DISPLAY_Comments.focus();
			return (false);
		   }
  }
