	//	Bouton "no fullscreen"
	var btnNoFullScreen = 'no_fullscreen_map';

	//	Si Bouton "no fullscreen" present on le masque
	if(document.getElementById(btnNoFullScreen)) document.getElementById('no_fullscreen_map').style.display='none';

	//	Fonction fullscreen non dependante de la CSS grace a setAttribute()
	function fullscreenMap(full){
		var map 	= document.getElementById('map');
		var btnNo 	= document.getElementById('no_fullscreen_map');
		
		if(full){
			map.style.overflow='auto';
			map.style.position='absolute';
			map.style.top=0;
			map.style.left=0;
			map.style.width='100%';
			map.style.height='100%';
			map.style.zIndex=30;
			btnNo.style.display='';
			document.body.style.overflow='hidden';
		} else {
			
			if(map.style.setAttribute){
				map.style.setAttribute('cssText', '');
			}else{
				map.setAttribute('style', '');
			}
			btnNo.style.display='none';
			document.body.style.overflow='';
		}
		
		myOnload();
	}

