	<!--Start Hiding
	function validateForm(form) { 				//This is the name of the function
	
		if (form.name.value == "") { 			//This checks to make sure the field is not empty
		alert("The name field is required."); 	//Informs user of empty field
		form.name.focus(); 						//This focuses the cursor on the empty field
		return false; 							//This prevents the form from being submitted
		}
		
		if (form.comments.value == "") { 			
		alert("The comments/questions field is required."); 			
		form.comments.focus(); 					
		return false; 							
		}
		
				
		 if (form.email.value == "") {
		    alert("The email field is required.");
			form.email.focus(); 					
			return false;
		  }
		  if ((form.email.value.indexOf ('@',0) == -1 ||
		   form.email.value.indexOf ('.',0) == -1) &&
		   form.email.value != "")
		  {
		    alert("Please verify that your email address is valid.");
			form.email.focus(); 					
			return false;
		  }

					
	}
	//stop hiding -->