	function validateContactForm(thisForm) {
		var alertMsgHeader	= "We could not submit your contact request for the following reasons: \n\n";
		var alertMsg 		= "";
		var isValidEmail 	= verifyEmail(thisForm.Email.value);
		
		if (thisForm.firstname.value == "") {
			alertMsg += "- Please enter your first name\n";
		}
		
		if (thisForm.lastname.value == "") {
			alertMsg += "- Please enter your last name\n";
		}
		
		if (!isValidEmail) {
			alertMsg += "- Please enter a valid email address\n";
		}
		
		if (thisForm.phone.value == "") {
			alertMsg += "- Please enter your phone number\n";
		}
		
		if (thisForm.address.value == "") {
			alertMsg += "- Please enter your address\n";
		}
		
		if (thisForm.city.value == "") {
			alertMsg += "- Please enter your city\n";
		}
		
		if (thisForm.stateprovince.value == "") {
			alertMsg += "- Please enter your state/province\n";
		}
		
		if (thisForm.country.value == "") {
			alertMsg += "- Please enter your country\n";
		}
		
		if (thisForm.zippostal.value == "") {
			alertMsg += "- Please enter your zip code\n";
		}
		
		if (thisForm.phone.value == "") {
			alertMsg += "- Please enter your phone number\n";
		}
		
		if(alertMsg.length) {
			alert(alertMsgHeader+alertMsg);
			return false;
		} else {
			return true;
		}
	}
	
	function validateWarrantyForm(thisForm) {
		var alertMsgHeader	= "We could not submit your warranty request for the following reasons: \n\n";
		var alertMsg 		= "";
		var isValidEmail 	= verifyEmail(thisForm.Email.value);
		
		if (!thisForm.field_data_U_Marketing_Warranty_DecTec_Product_Installed___Warranty_Web_Form[0].checked && !thisForm.field_data_U_Marketing_Warranty_DecTec_Product_Installed___Warranty_Web_Form[1].checked && !thisForm.field_data_U_Marketing_Warranty_DecTec_Product_Installed___Warranty_Web_Form[2].checked && !thisForm.field_data_U_Marketing_Warranty_DecTec_Product_Installed___Warranty_Web_Form[3].checked) {
			alertMsg += "- Please select a DecTec product to install.\n";
		}
		
		if (thisForm.ownerFirstName.value == "") {
			alertMsg += "- Please complete Owner First Name.\n";
		}
		
		if (thisForm.ownerLastName.value == "") {
			alertMsg += "- Please complete Owner Last Name.\n";
		}

		if (thisForm.owneraddress.value == "") {
			alertMsg += "- Please complete Owner Address.\n";
		}

		if (thisForm.city.value == "") {
			alertMsg += "- Please complete City.\n";
		}

		if (thisForm.stateprovince.value == "") {
			alertMsg += "- Please complete State/Province.\n";
		}

		if (thisForm.zippostal.value == "") {
			alertMsg += "- Please complete Zip/Postal Code.\n";
		}

		if (!isValidEmail) {
			alertMsg += "- Please complete Email.\n";
		}

		if (thisForm.dateofinstall.value == "") {
			alertMsg += "- Please complete Date of Installation.\n";
		}

		if (thisForm.cost.value == "") {
			alertMsg += "- Please complete Cost.\n";
		}

		if (thisForm.purchasedfrom.value == "") {
			alertMsg += "- Please complete Company Purchased From.\n";
		}

		if (thisForm.address.value == "") {
			alertMsg += "- Please complete Address.\n";
		}

		if (thisForm.compcity.value == "") {
			alertMsg += "- Please complete City.\n";
		}

		if (thisForm.compstateprov.value == "") {
			alertMsg += "- Please complete Province/State.\n";
		}

		if (thisForm.country.value == "") {
			alertMsg += "- Please complete Country.\n";
		}

		if (thisForm.compzippostal.value == "") {
			alertMsg += "- Please complete Zip/Postal Code.\n";
		}

		if (!isValidEmail) {
			alertMsg += "- Please enter a valid email address.\n";
		}

		if(alertMsg.length) {
			alert(alertMsgHeader+alertMsg);
			return false;
		} else {
			return true;
		}

	}