
<!-- 

function validateForm()
{
	var cuType = document.theForm.cuType.selectedIndex;
	if ( cuType == 0 )
	{
		alert('-Submission Type is required-\n\n Please select a type to continue.\n\n Thank you.');
		document.theForm.cuType.focus();
		return false;
	}
	var cuFirstName = document.theForm.cuFirstName.value;
	if ( cuFirstName == '' )
	{
		alert('-First Name is required-\n\n Please fill it out to continue.\n\n Thank you.');
		document.theForm.cuFirstName.focus();
		return false;
	}
	var cuLastName = document.theForm.cuLastName.value;
	if ( cuLastName == '' )
	{
		alert('-Last Name is required-\n\n Please fill it out to continue.\n\n Thank you.');
		document.theForm.cuLastName.focus();
		return false;
	}
	var cuEmail = document.theForm.cuEmail.value;
	if ( cuEmail == '' )
	{
		alert('-Email is required-\n\n Please fill it out to continue.\n\n Thank you.');
		document.theForm.cuEmail.focus();
		return false;
	}
	var filter  = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
	if (!filter.test(cuEmail))
	{
		alert('-Email must be in a proper format.-');
		document.theForm.cuEmail.focus();
		return false;
	}
	var cuAddress1 = document.theForm.cuAddress1.value;
	if ( cuAddress1 == '' )
	{
		alert('-Address 1 is required-\n\n Please fill it out to continue.\n\n Thank you.');
		document.theForm.cuAddress1.focus();
		return false;
	}
	var cuCity = document.theForm.cuCity.value;
	if ( cuCity == '' )
	{
		alert('-City is required-\n\n Please fill it out to continue.\n\n Thank you.');
		document.theForm.cuCity.focus();
		return false;
	}
	var cuState = document.theForm.cuState.value;
	if ( cuState == '' )
	{
		alert('-State is required-\n\n Please fill it out to continue.\n\n Thank you.');
		document.theForm.cuState.focus();
		return false;
	}
	var cuZIP = document.theForm.cuZIP.value;
	if ( cuZIP == '' )
	{
		alert('-ZIP is required-\n\n Please fill it out to continue.\n\n Thank you.');
		document.theForm.cuZIP.focus();
		return false;
	}
	var cuPhone = document.theForm.cuPhone.value;
	if ( cuPhone == '' )
	{
		alert('-Phone is required-\n\n Please fill it out to continue.\n\n Thank you.');
		document.theForm.cuPhone.focus();
		return false;
	}
	var cuHow = document.theForm.cuHow.selectedIndex;
	if ( cuHow == 0 )
	{
		alert('-How you heard about us is required-\n\n Please fill it out to continue.\n\n Thank you.');
		document.theForm.cuHow.focus();
		return false;
	}
	var cuHowOther = document.theForm.cuHowOther.value;
	if ( cuHow == 6 && cuHowOther == '' )
	{
		alert('-If you heard about us another way please let us know how-\n\n Please fill it out to continue.\n\n Thank you.');
		document.theForm.cuHowOther.focus();
		return false;
	}
	return true;
}
-->