
// Functionality for SW Locations page



function focusLocation(locationNumber) {
	var mapTargetElem = ("mapLocation_" + locationNumber);
	//var bgImg = "url(../images/odysseySW/mapLocation_highlight.png)";
	//document.getElementById(mapTargetElem).style.backgroundImage = bgImg;
	document.getElementById(mapTargetElem).style.backgroundPosition = "0px 0px";
	
	var listTargetElem = ("linkLocation_" + locationNumber);
	document.getElementById(listTargetElem).style.backgroundColor = "#DBE3DA";
}

function blurLocation(locationNumber) {
	var mapTargetElem = ("mapLocation_" + locationNumber);
	//document.getElementById(mapTargetElem).style.backgroundImage = "none";
	document.getElementById(mapTargetElem).style.backgroundPosition = "0px 26px";
		
	var listTargetElem = ("linkLocation_" + locationNumber);
	document.getElementById(listTargetElem).style.backgroundColor = "#FAF6DE";
}


function viewDetailMap(mapNumber, winWidth, winHeight) {	
	url = "/odyssey-southwest/detailMap_" + mapNumber + ".html";
	windowAttributes = "'toolbar=no,resize=yes,scrollbars=no,menubar=no,width=" + winWidth + ", height=" + winHeight + "'";
	detailMapWin = window.open(url, '' , windowAttributes);
}
