function Validator(theForm)
{
	var error = ""; 
	var digits = "0123456789-";

	
// Validate Email Address
	if (theForm.email.value == "")
	{
		error += "Please enter your email address.\n";
	}
	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);
	} 
}

