function Validate_Contract_Request() {
	var form = document.Get_Contract;

	if ($("#Contact_Zip").val() == '') {
		alert('It appears that not all required information has been completed.\nPlease provide your ZIP code.');
		form.Contact_Zip.focus();
		return false;
	}
	if ($("#Contract_Square_Feet").val() == '') {
		alert('It appears that not all required information has been completed.\nPlease provide your properties square feet.');
		form.Contract_Square_Feet.focus();
		return false;
	}

	return true;
}
