
<!-- 

function validateForm()
{
	var Interest1 = document.theForm.Interest1.checked;
	var Interest2 = document.theForm.Interest2.checked;
	var Interest3 = document.theForm.Interest3.checked;
	var Interest4 = document.theForm.Interest4.checked;
	var Interest5 = document.theForm.Interest5.checked;
	var Interest6 = document.theForm.Interest6.checked;
	if ( !(Interest1||Interest2||Interest3||Interest4||Interest5||Interest6) )
	{
		alert('-You must select at least one committee.-\n\n Please fill it out to continue.\n\n Thank you.');
		document.theForm.Interest1.focus();
		return false;
	}
	var cuName = document.theForm.cuName.value;
	if ( cuName == '' )
	{
		alert('-Name is required-\n\n Please fill it out to continue.\n\n Thank you.');
		document.theForm.cuName.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 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;
	}
	return true;
}

-->