function Validator(theForm)
{
	var error = ""; 

	if (theForm.name.value == "")
	{
		error += "Please fill in the your name.";
	} 
	if (theForm.email.value == "")
	{
		error += "\r\n" + "You must include an accurate email address for a response.";
	}
	if ((theForm.email.value.indexOf ('@',0) == -1 ||
		theForm.email.value.indexOf ('.',0) == -1) &&
		theForm.email.value != "")
	{
		error += "Please verify that your email address is valid.";
	} 
	if (error != "")
	{
		alert(error);
		return (false);
	} else {
		return (true);
	} 
}