<!--
function VerifyForm(theForm) {
	/*if ((theForm.a02_email.value.length < 5) || (theForm.a02_email.value.indexOf ('@', 0) == -1) || (theForm.a02_email.value.indexOf ('.', 0) == -1)) {
		alert("Please enter a valid e-mail address.");
		theForm.a02_email.focus();
		return (false);
	}*/
	if (theForm.a01_name.value == "") {
		alert("Please enter your full name.");
		theForm.a01_name.focus();
		return (false);
	}
	if (theForm.a03_organization.value == "") {
		alert("Please enter your organization.");
		theForm.a03_organization.focus();
		return (false);
	}
	if (theForm.a04_phone.value == "") {
		alert("Please enter your phone number.");
		theForm.a04_phone.focus();
		return (false);
	}
	if (theForm.a05_address1.value == "") {
		alert("Please enter your Address.");
		theForm.a05_address1.focus();
		return (false);
	}
	if (theForm.a07_city.value == "") {
		alert("Please enter your city.");
		theForm.a07_city.focus();
		return (false);
	}
	if (theForm.a08_state.value == "") {
		alert("Please enter your state.");
		theForm.a08_state.focus();
		return (false);
	}
	if (theForm.a09_zip.value == "") {
		alert("Please enter your zip code.");
		theForm.a09_zip.focus();
		return (false);
	}
	/*
	if (theForm.password.value != theForm.password_2.value) {
		alert("Password and confirmation do not match. Please re-enter your password &amp; confirmation.");
		theForm.password.value = "";
		theForm.password_2.value = "";
		theForm.password.focus();
		return (false);
	}
	if (theForm.email_preference.value == "") {
		alert("Please select an e-mail preference.");
		theForm.email_preference.focus();
		return (false);
	} */
	// all is well
		return (true);
	}
	//-->