function validate_form(form_name)

{
		// validate syntax
	form_valid = validate_syntax(form_name);
		// if syntax is valid, validate business logic
			// if all validation pass, submit the form

	
	
	if(form_valid){ // will allow this forms to submit once if double clicking is necessary will detect that

	 		alert(" Thank you! Your form will now be \n sent to a sales representative who \n will contact you shortly."); return true;

		}
	
else{
	return false;
}
	 
	 
}

