	function ValidateForm() {
		if (document.getElementById('full-name').value == '') {
			alert("Please enter your full name");
			document.getElementById('full-name').focus()
			return false;
		}
	}
	
	function submitPest() {
		document.forms["frmInspection"].action = "/FreeInspection/";
		document.forms["frmInspection"].submit();
	}
	
	function submitLawnAnalysis() {
		document.forms["frmInspection"].submit();
	}
