function montre(id) {
var d = document.getElementById(id);
	for (var i = 1; i<=10; i++) {
		if (document.getElementById('menu'+i)) {document.getElementById('menu'+i).style.visibility='hidden';}
	}
if (d) {d.style.visibility='visible';}
}



var isIE=(document.all!=null);
var isNav=(document.layers!=null);

function BodyLoad() {
	if (typeof CustomBodyLoad != 'undefined') {
		CustomBodyLoad();
	}
}


function chgpage(formulaire)
{
if (formulaire.listepages.selectedIndex != 0)
	{
	var destination = formulaire.listepages.options[formulaire.listepages.selectedIndex].value; 
	formulaire.listepages.value = '';
	location.href = destination;
	}
}


sfHover = function() {
	var sfEls = document.getElementById("ncs").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);