function CheckForm( theform )
{
	var bMissingFields = false;
	var strFields = "";
	
	if( theform.sqft.value == '' ){
		bMissingFields = true;
		strFields += "     Square Footage\n";
	}
		if( theform.zip.value == '' ){
		bMissingFields = true;
		strFields += "     Zip Code\n";
	}



	if( bMissingFields ) {
		alert( "I'm sorry, but you must provide the following field(s) before continuing:\n\n" + strFields );
		return false;
	}
	
	return true;
}
