<!--

function Form1_Validator(theForm)
{

	if (theForm.realname.value == "")
	{
		alert("Please enter a value for the \"Name\" field.");
		theForm.realname.focus();
		return (false);
	}
	
	if (theForm.email.value == "")
	{
		alert("Please enter a value for the \"Email Address\" field.");
		theForm.email.focus();
		return (false);
	}
	
	if (theForm.Comment.value == "")
	{
		alert("Please enter a value for the \"Comment\" field.");
		theForm.Comment.focus();
		return (false);
	}

  return (true);
}
// -->
