function addDisclaimer(url, searchElem, resultsElem, detailsElem) {
	var disclaimerAddition = "Prices do not include government fees which include tax, tag, title and WRA (Warranty Rights Act) fees.  All prices, specifications and availability subject to change without notice. Contact dealer for most current information.";
	if ((url.indexOf("/NewVehicleSearch") != -1) || (url.indexOf("/PreOwnedVehicleSearch") != -1)) {
		searchElem.html(disclaimerAddition);
	} else if (url.indexOf("/VehicleSearchResults") != -1) {
		resultsElem.html(disclaimerAddition);
	} else if (url.indexOf("/VehicleDetails") != -1) {
		detailsElem.html(disclaimerAddition);
	}
}