function Validator(theForm)
{
	var error = ""; 
	var digits = "0123456789-";

// Validate Name Field	
	if (theForm.fname.value == "")
		{
			error += "Please enter your name in the name field.\n";
		} 
	
// 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);
	} 
}
