var currentCountry = "mexico";

function linkHighlight(country) {
	var obj = document.getElementById(country + "Link");
	obj.style.color = "#000000";
}
function unhighlight(country) {
	var obj = document.getElementById(country + "Link");
	obj.style.color = "#666666";
}
	
function mapHighlight(country) {	
    var url = "img/map-" + country + ".gif";
    //alert(url);
	document.getElementById("map").src = url;
}	

function naturalMap() {
	window.open(
	    "maps/natural.html",
	    "map_window",
	    "scrollbars=yes, resizable=no, copyhistory=yes, width=1000, height=600"
	);
}

function odysseyMap() {
	window.open(
	    "maps/odyssey.html",
	    "map_window",
	    "scrollbars=yes, resizable=no, copyhistory=yes, width=950, height=400"
	);
}		

function classicMap() {
	window.open(
	    "maps/classic.html",
	    "map_window",
	    "scrollbars=yes, resizable=no, copyhistory=yes, width=1000, height=600"
	);
}		