
// Functionality for Locations page


// -------------------------------------------------------------------------------------------------------------------
// Preloads rollovers for all map images on pageload

window.onLoad = function preloadMapImages() {
	if (document.images) {
			if (typeof(document.mapImages) == 'undefined'){
      document.mapImages = new Object();
    	}
    	document.mapImages.loadedImages = new Array();
    	document.mapImages.loadedImages[0] = new Image();
    	document.mapImages.loadedImages[0].src = '/images/locations/mapNumber_1_bg.gif';
    	document.mapImages.loadedImages[1] = new Image();
    	document.mapImages.loadedImages[1].src = '/images/locations/mapNumber_2_bg.gif';
    	document.mapImages.loadedImages[2] = new Image();
    	document.mapImages.loadedImages[2].src = '/images/locations/mapNumber_3_bg.gif';
    	document.mapImages.loadedImages[3] = new Image();
   		document.mapImages.loadedImages[3].src = '/images/locations/mapNumber_4_bg.gif';
			document.mapImages.loadedImages[4] = new Image();
   		document.mapImages.loadedImages[4].src = '/images/locations/mapNumber_4_bg.gif';
	}	
}






function focusLocation(locationNumber) {
	var mapTargetElem = ("mapLocation_" + locationNumber);
	var bgImg = "url(../images/locations/mapNumber_" + locationNumber + "_bg.gif)";
	document.getElementById(mapTargetElem).style.backgroundImage = bgImg;
	
	var listTargetElem = ("linkLocation_" + locationNumber);
	document.getElementById(listTargetElem).style.backgroundColor = "#DBE3DA";
}

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

/*function viewDetailMap(locationNumber, winWidth, winHeight) {	
	windowAttributes = "'toolbar=no,resize=yes,scrollbars=no,menubar=no,width=" + winWidth + ", height=" + winHeight + "'";
	largerWin = window.open('', '' , windowAttributes);
	largerWin.document.write("<html><head></head><body leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\" bgcolor=\"FAF6DE\"  style=\"background-image: url(../images/locations/detailMap_" + locationNumber + ".gif);  background-repeat: no-repeat;\"></body></html>");
	largerWin.document.close();
}
*/

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

/*function viewDirections(url) {	
	detailMapWin.blur();
	//main.location.href = url;	
}*/