
	function TestNonNull(id) {
	
		var controle = true;
		if (id == "sous-menu0") { if  (document.getElementById("ValeurAccueil")==null) { controle=false; }}
		if (id == "sous-menu1") { if  (document.getElementById("ValeurActu")==null) { controle=false; }}
		if (id == "sous-menu3") { if  (document.getElementById("ValeurIndustriel")==null) { controle=false; }}
		if (id == "sous-menu4") { if  (document.getElementById("ValeurContact")==null) { controle=false; }}

		return controle;
	}
	
	function montre(id) {
	
		if (TestNonNull(id)==true){
			if (document.getElementById) {
			document.getElementById(id).style.display="block";
			} else if (document.all) {
			document.all[id].style.display="block";
			} else if (document.layers) {
			document.layers[id].display="block";
			}
		}
		
	}

	function cache(id) {
		if (document.getElementById) {
		document.getElementById(id).style.display="none";
		} else if (document.all) {
		document.all[id].style.display="none";
		} else if (document.layers) {
		document.layers[id].display="none";
		}
	}
	
	function ChangerCiblePage(IdLien,NomPage)
	{
		var chaine = document.getElementById(IdLien).href;
		document.getElementById(IdLien).href = chaine.replace("Contenu",NomPage);
	}
