var fixed = false;









function map_show(Country) {

			document.getElementById('map_sidebar').innerHTML = '<h1>' + title[Country] + '</h1>' + summary[Country];

		

		document.getElementById('map_sidebar-container').style.visibility = 'visible';	

		document.getElementById('map_sidebar-container').style.zIndex = 3;

}



function show_detail(CountryName) {
	
	   if (countryStatus[CountryName] == 'publish') {
			openMyModal('index.php?page_id=' + countryID[CountryName]);
		}

		return false;

}











function map_hide() {

	

		document.getElementById('map_sidebar-container').style.visibility = 'hidden';	

		

	

}

/*

function map_fix() {

	if (fixed) fixed = false;

	else fixed = true;	

	return false;

}

*/





var openMyModal = function(source)

{

	modalWindow.windowId = "myModal";

	modalWindow.width = 628;

	modalWindow.height = 540;

	modalWindow.content = "<iframe width='620' height='520' frameborder='0' scrolling='no' allowtransparency='true' src='" + source + "'></iframe>";

	modalWindow.open();

};

