 	<!--\\
 		function validate() {
 
 			if ((document.form.first_name.value.length == 0) && (document.form.agent_name.value.length == 0)) {
 				alert("Name is a required field. Please complete the form and submit again.");
 				return false;
 			}
 
 			if ((document.form.first_name.value.length > 0) && (document.form.email.value.length == 0)) {
				if(!confirm("Email is not required, however leaving it blank may prevent us from contacting you.\nClick OK to submit form without email. Click Cancel to enter an email."))
				{
					document.form.email.focus();
					return false;
				}

 				//alert("Email is a required field. Please complete the form and submit again.");
 				//document.form.email.focus();
 				//return false;
 			}
 
 			if ((document.form.agent_name.value.length > 0) && (document.form.agent_email.value.length == 0)) {
 				alert("Email is a required field. Please complete the form and submit again.");
 				document.form.agent_email.focus();
 				return false;
 			}			
 			return true;
		}
	//-->
