function FormValidator(theForm){
	if (theForm.fname.value == ""){
		//alert("Please enter a value for the \"First Name\" field.");
		theForm.fname.focus();
		return (false);
	}

	if (theForm.lname.value == ""){
		//alert("Please enter a value for the \"Last Name\" field.");
		theForm.lname.focus();
		return (false);
	}

	if (theForm.address1.value == ""){
		//alert("Please enter a value for the \"Last Name\" field.");
		theForm.address1.focus();
		return (false);
	}

	if (theForm.city.value == ""){
		//alert("Please enter a value for the \"Last Name\" field.");
		theForm.city.focus();
		return (false);
	}

	if (theForm.state.value == ""){
		//alert("Please enter a value for the \"Last Name\" field.");
		theForm.state.focus();
		return (false);
	}

	if (theForm.zip.value == ""){
		//alert("Please enter a value for the \"Last Name\" field.");
		theForm.zip.focus();
		return (false);
	}

	if (theForm.phone.value == ""){
		//alert("Please enter a value for the \"Last Name\" field.");
		theForm.phone.focus();
		return (false);
	}

	if (theForm.email.value == ""){
		//alert("Please enter a value for the \"Last Name\" field.");
		theForm.email.focus();
		return (false);
	}

	return (true);
}

