/* ID-Bezeichnungen */
mapID = new Array('ganzEuropa', 'ir', 'it', 'oe', 'de', 'lu', 'en', 'es', 'fr', 'po', 'be', 'nl', 'tr', 'ru');

/* zeigt ein Land (Grafik) an und blendet alles andere aus */
function portalShowCountry(id) {
	/* Ländergrafiken */
	var mapShow = document.getElementById(id);
	if (mapShow != null) {
		/* gewünschtes Land anzeigen */
		mapShow.style.visibility = 'visible';
	}
	/* alle anderen ausblenden */
	for(i = 0; i < mapID.length; i++) {
		var mapHide = document.getElementById(mapID[i]);
		if (mapHide != null && mapID[i] != id) {
			mapHide.style.visibility = 'hidden';
		} 
	}

	/* Ländernamen */
	var linkShow = document.getElementById('link_'+id);
	if (linkShow != null) {
		/* gewünschtes Land anzeigen */
		linkShow.className = 'countryNameHover';
	}
	/* alle anderen ausblenden */
 	for(i = 0; i < mapID.length; i++) {
		var linkHide = document.getElementById('link_'+mapID[i]);
		if (linkHide != null && mapID[i] != id) {
			linkHide.className = 'countryName';
		} 
  	}		
}



/* zeigt ein Land (Grafik) an und blendet alles andere aus */
function portalShowCountryEU(id) {
	/* Ländergrafiken */
	var mapShow = document.getElementById('ganzEuropa');
	if (mapShow != null) {
		/* gewünschtes Land anzeigen */
		mapShow.style.visibility = 'visible';
	}
	/* alle anderen ausblenden */
	for(i = 0; i < mapID.length; i++) {
		var mapHide = document.getElementById(mapID[i]);
		if (mapHide != null && mapID[i] != 'ganzEuropa') {
			mapHide.style.visibility = 'hidden';
		} 
	}

	/* Ländernamen */
	var linkShow = document.getElementById('link_'+id);
	if (linkShow != null) {
		/* gewünschtes Land anzeigen */
		linkShow.className = 'countryNameHover';
	}
	/* alle anderen ausblenden */
 	for(i = 0; i < mapID.length; i++) {
		var linkHide = document.getElementById('link_'+mapID[i]);
		if (linkHide != null && mapID[i] != id) {
			linkHide.className = 'countryName';
		} 
  	}		
}


