	function Contact_Validator(theForm) {
		
		if (theForm.name.value == "") {
			alert("Please enter a value for the \"Name\" field.");
			theForm.name.focus();
			return (false);
		}

		if (theForm.company.value == "") {
			alert("Please enter a value for the \"Company\" field.");
			theForm.company.focus();
			return (false);
		}

		if (theForm.address.value == "") {
			alert("Please enter a value for the \"Address\" field.");
			theForm.address.focus();
			return (false);
		}

		if (theForm.city.value == "") {
			alert("Please enter a value for the \"City\" field.");
			theForm.city.focus();
			return (false);
		}

		if (theForm.state.value == "") {
			alert("Please enter a value for the \"State\" field.");
			theForm.state.focus();
			return (false);
		}

		if (theForm.zip.value == "") {
			alert("Please enter a value for the \"Zip\" field.");
			theForm.zip.focus();
			return (false);
		}

		if (theForm.email.value == "") {
			alert("Please enter a value for the \"Email\" field.");
			theForm.email.focus();
			return (false);
		}

		if (theForm.confirm_email.value != theForm.email.value) {
			alert("Please enter the same email address in the \"Confirm Email\" field.");
			theForm.confirm_email.focus();
			return (false);
		}
		
		if (theForm.confirm_email.value == "") {
			alert("Please enter a value for the \"Confirm Email\" field.");
			theForm.confirm_email.focus();
			return (false);
		}

		

		if (theForm.phone.value == "") {
			alert("Please enter a value for the \"Phone\" field.");
			theForm.phone.focus();
			return (false);
		}

		if (theForm.message.value == "") {
			alert("Please enter a value for the \"Comments\" field.");
			theForm.message.focus();
			return (false);
		}

		return (true);
	}