function CheckForm( theform )
{
	var bMissingFields = false;
	var strFields = "";
	
		if( theform.name_from.value == '' ){
		bMissingFields = true;
		strFields += "     Name\n";
	}
		if( theform.address.value == '' ){
		bMissingFields = true;
		strFields += "     Address\n";
	}
		if( theform.city.value == '' ){
		bMissingFields = true;
		strFields += "     City\n";
	}
		if( theform.state.value == '' ){
		bMissingFields = true;
		strFields += "     State\n";
	}
		if( theform.zip.value == '' ){
		bMissingFields = true;
		strFields += "     Zip Code\n";
	}
		if( theform.day_phone.value == '' ){
		bMissingFields = true;
		strFields += "     Daytime Phone\n";
	}
		if( theform.email_from.value == '' ){
		bMissingFields = true;
		strFields += "     Email Adress\n";
	}


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