function hide() {
	document.getElementById('europe').style.display="none";
	document.getElementById('pacific').style.display="none";
	document.getElementById('america').style.display="none";
}
function show(nom) {
	hide();
	switch(nom) {
		case "pacific":
			document.getElementById('map').style.background='url(portail/portail-map.png) no-repeat 0 -540px';
			break;
		case "america":
			document.getElementById('map').style.background='url(portail/portail-map.png) no-repeat -500px -270px';
			break;
		case "europe":
			document.getElementById('map').style.background='url(portail/portail-map.png) no-repeat 0 0';
			break;
		default:
			document.getElementById('map').style.background='url(portail/portail-map.png) no-repeat 0 -270px';
	}
	if(nom!=null) {
		document.getElementById(nom).style.display = "";
	}
}