var _GEN_ERROR = "Error occurred. Please try again later.";
var SearchResultsGridError = "An error occurred when processing the data in the search results grid.";
var ProcessingSearchResultsError = "An error occurred while processing the Catalog search results.";
var CatalogSearchError = "An error occurred while searching the Catalog.";
var GoogleMapsError = 'An error occurred while attempting to connect to Google Maps.  Please check your internet connection.';
var FeaturedLocationsError  = 'An error occurred while connecting to the Featured Locations list';
var NoPlaceNameError = "Please enter a location in the <i>FIND A PLACE</i> text box.";

function getMessage(msg, arg1, arg2, arg3) {
	if (arg1 != null && arg1 != "") {
		msg = msg.replace("$1", arg1);
		if (arg2 != null && arg2 != "") {
			msg = msg.replace("$2", arg2);
			if (arg3 != null && arg3 != "") {
				msg = msg.replace("$3", arg3);
				return msg;
			} else
				return msg;

		} else 
			return msg;

	} else 
		return msg;

}