<!--
function VerifyForm_cu(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.a04_phone.value == "") {
		alert("Please enter your phone number.");
		theForm.a04_phone.focus();
		return (false);
	}
	if (theForm.a08_state.value == "") {
		alert("Please enter your state.");
		theForm.a08_state.focus();
		return (false);
	}
	if (theForm.a11_comments.value == "") {
		alert("Please enter your zip code.");
		theForm.a11_comments.focus();
		return (false);
	}
	// all is well
		return (true);
	}
	//-->