<!--
function checkFields() {
	var myString = "You must input the following fields to send an estimate:\n\n";
	var allGood = true;

	if (window.document.frmEstimate.txtfirst.value == "") {
		allGood = false;
		myString += "     First Name\n";
	}

	if (window.document.frmEstimate.txtlast.value == "") {
		allGood = false;
		myString += "     Last Name\n";
	}

	if (window.document.frmEstimate.txtphone.value == "") {
		allGood = false;
		myString += "     Daytime Phone\n";
	}

	if (window.document.frmEstimate.txtemail.value == "") {
		allGood = false;
		myString += "     Valid Email Address\n";
	}

	if (window.document.frmEstimate.txtstreetfrom.value == "") {
		allGood = false;
		myString += "     Moving From Steet\n";
	}

	if (window.document.frmEstimate.txtcityfrom.value == "") {
		allGood = false;
		myString += "     Moving From City\n";
	}

	if (window.document.frmEstimate.intZipFrom.value == "") {
		allGood = false;
		myString += "     Moving From Zip\n";
	}

	if (window.document.frmEstimate.txtstreetto.value == "") {
		allGood = false;
		myString += "     Moving To Steet\n";
	}

	if (window.document.frmEstimate.txtcityto.value == "") {
		allGood = false;
		myString += "     Moving To City\n";
	}

	if (window.document.frmEstimate.intZipTo.value == "") {
		allGood = false;
		myString += "     Moving To Zip\n";
	}

	if (window.document.frmEstimate.intday.value == "" | window.document.frmEstimate.ddmonth.value == "??" | window.document.frmEstimate.ddyear.value == "??" ) {
		allGood = false;
		myString += "     Date of Move\n";
	}

	if (window.document.frmEstimate.intfootage.value == "") {
		allGood = false;
		myString += "     Square Footage\n";
	}

	if (window.document.frmEstimate.intpeople.value == "") {
		allGood = false;
		myString += "     Number of People in your home\n";
	}

	if (window.document.frmEstimate.intyears.value == "") {
		allGood = false;
		myString += "     Years in your home\n";
	}

	if (window.document.frmEstimate.intmonths.value == "") {
		allGood = false;
		myString += "     Months in your home\n";
	}

	if (allGood == true) {		
		return true;
	} else {
		myString += "\nPlease fill in these required fields and try again. \n";
		alert(myString);
		return false;
	}
}

//-->