// Displays the right Site Map link in the footer above the disclaimer
function showSiteMap(url)
{
	// Vegas
	if ((url.indexOf("caesars-palace") != -1) || (url.indexOf("CLV") != -1)) {
		document.write("<a href=\"/casinos/caesars-palace/site-map.html\"><u><strong>Caesars Palace Site Map</strong></u></a><br/><br/>\n");
	}
	else if ((url.indexOf("flamingo") != -1) || (url.indexOf("FLV") != -1)) {
		document.write("<a href=\"/casinos/flamingo-las-vegas/site-map.html\"><u><strong>Flamingo Las Vegas Site Map</strong></u></a><br/><br/>\n");
	}
	else if ((url.indexOf("paris") != -1) || (url.indexOf("PLV") != -1)) {
		document.write("<a href=\"/casinos/paris-las-vegas/site-map.html\"><u><strong>Paris Las Vegas Site Map</strong></u></a><br/><br/>\n");
	}
	else if ((url.indexOf("rio") != -1) || (url.indexOf("RLV") != -1)) {
		document.write("<a href=\"/casinos/rio/site-map.html\"><u><strong>Rio Las Vegas Site Map</strong></u></a><br/><br/>\n");
	}
	else if ((url.indexOf("imperial") != -1) || (url.indexOf("ILV") != -1)) {
		document.write("<a href=\"/casinos/imperial-palace/site-map.html\"><u><strong>Imperial Palace Site Map</strong></u></a><br/><br/>\n");
	}
	else if ((url.indexOf("harrahs-las-vegas") != -1) || (url.indexOf("LAS") != -1)) {
		document.write("<a href=\"/casinos/harrahs-las-vegas/site-map.html\"><u><strong>Harrah's Las Vegas Site Map</strong></u></a><br/><br/>\n");
	}
	else if ((url.indexOf("ballys-las") != -1) || (url.indexOf("BLV") != -1)) {
		document.write("<a href=\"/casinos/ballys-las-vegas/site-map.html\"><u><strong>Bally's Las Vegas Site Map</strong></u></a><br/><br/>\n");
	}
	
	// AC
	else if ((url.indexOf("caesars-atlantic") != -1) || (url.indexOf("CAC") != -1)) {
		document.write("<a href=\"/casinos/caesars-atlantic-city/site-map.html\"><u><strong>Caesars Atlantic City Site Map</strong></u></a><br/><br/>\n");
	}
	else if ((url.indexOf("harrahs-atlantic") != -1) || (url.indexOf("ATL") != -1)) {
		document.write("<a href=\"/casinos/harrahs-atlantic-city/site-map.html\"><u><strong>Harrah's Resort Atlantic City Site Map</strong></u></a><br/><br/>\n");
	}
	else if ((url.indexOf("showboat") != -1) || (url.indexOf("SAC") != -1)) {
		document.write("<a href=\"/casinos/showboat-atlantic-city/site-map.html\"><u><strong>Showboat Atlantic City Site Map</strong></u></a><br/><br/>\n");
	}
	else if ((url.indexOf("ballys-atlantic") != -1) || (url.indexOf("BAC") != -1)) {
		document.write("<a href=\"/casinos/ballys-atlantic-city/site-map.html\"><u><strong>Bally's Atlantic City Site Map</strong></u></a><br/><br/>\n");
	}
	
	// Reno/Tahoe
	else if ((url.indexOf("harrahs-reno") != -1) || (url.indexOf("REN") != -1)) {
		document.write("<a href=\"/casinos/harrahs-reno/site-map.html\"><u><strong>Harrah's Reno Site Map</strong></u></a><br/><br/>\n");
	}
	else if ((url.indexOf("harrahs-lake") != -1) || (url.indexOf("TAH") != -1)) {
		document.write("<a href=\"/casinos/harrahs-lake-tahoe/site-map.html\"><u><strong>Harrah's Lake Tahoe Site Map</strong></u></a><br/><br/>\n");
	}
	else if ((url.indexOf("harveys") != -1) || (url.indexOf("HLT") != -1)) {
		document.write("<a href=\"/casinos/harveys-lake-tahoe/site-map.html\"><u><strong>Harveys Lake Tahoe Site Map</strong></u></a><br/><br/>\n");
	}
	
	// New Orleans/Gulf
	else if ((url.indexOf("harrahs-new-orleans") != -1) || (url.indexOf("NOR") != -1)) {
		document.write("<a href=\"/casinos/harrahs-new-orleans/site-map.html\"><u><strong>Harrah's New Orleans Site Map</strong></u></a><br/><br/>\n");
	}
	
	else {
		document.write("<a href=\"/site-map.html\"><u><strong>Site Map</strong></u></a><br/><br/>\n");
	}
}
