// SCRIPT MENU
window.onload=montre;
function montre(id) {
var d = document.getElementById(id);
	for (var i = 1; i<=10; i++) {
		if (document.getElementById('smenu'+i)) {document.getElementById('smenu'+i).style.display='none';}
	}
if (d) {d.style.display='block';}
}
function montreSM(idSM){
	tabNodes=document.getElementById(idSM).childNodes;
	for(i in tabNodes)
		if(tabNodes[i].nodeName=='DIV')
			visibilite(tabNodes[i].id);
}

// SCRIPT DISPLAY BLOCK
function visibilite(thingId){
var targetElement;
targetElement = document.getElementById(thingId) ;

if (targetElement.style.display == "none" | targetElement.style.display == ""){
	targetElement.style.display = "block" ;
} else {
	targetElement.style.display = "none" ;
}
}

// SCRIPT POPUP
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}