function Validator(theForm)
{
	var error = "";
	var digits = "0123456789";

	if (theForm.name.value == "")
	{
		error += "Please enter your first name.\n";
	}
	if (theForm.from.value == "")
	{
		error += "You must include an accurate email address.\n";
	}
	if ((theForm.from.value.indexOf ('@',0) == -1 ||
		theForm.from.value.indexOf ('.',0) == -1) &&
		theForm.from.value != "")
	{
		error += "Please verify that your email address is valid.\n";
	}
        if (error != "")
	{
		alert(error);
		return (false);
	}
}
