function CheckForm( theform )
{
	var bMissingFields = false;
	var strFields = "";
	
	if( theform.name.value == '' ){
		bMissingFields = true;
		strFields += "     Contact Information: Name\n";
	}
	if( theform.city.value == '' ){
		bMissingFields = true;
		strFields += "     Contact Information: City\n";
	}
	if( theform._formFrom.value == '' ){
		bMissingFields = true;
		strFields += "     Contact Information: Email\n";
	}	
	if( theform.enquiry.value == '' ){
		bMissingFields = true;
		strFields += "     Contact Information: Enquiry\n";
	}	
	if( bMissingFields ) {
		alert( "I'm sorry, but you must provide the following field(s) before continuing:\n" + strFields );
		return false;
	}
	return true;
}