
window.onload=hide;



function hide() {

	for (var i = 1; i<=10; i++) {

			if (document.getElementById('smenu'+i)) {document.getElementById('smenu'+i).style.display='none';}

		}

}



function montre(id) {

	var d = document.getElementById(id);

	if (d.style.display=='none') {

		

		for (var i = 1; i<=10; i++) {

			if ((document.getElementById('smenu'+i)) && ('smenu'+i != id)) {document.getElementById('smenu'+i).style.display='none';}

		}

		d.style.display='block';

	}

	else {

		d.style.display='none';

	}

}
function PopupImage(imgpop,titre) {
	var top=(screen.height-400)/2;
  	var left=(screen.width-400)/2;
	w=open("","image","top="+top+",left="+left+",width=400,height=400,toolbar=no,scrollbars=no,resizable=yes");	
	w.document.write("<HTML><HEAD><TITLE>"+titre+"</TITLE></HEAD>");
	 
	w.document.write("<BODY  leftMargin=0 topMargin=0 marginwidth=0 marginheight=0> <object  type='application/x-shockwave-flash'  width='400' height='300' data='"+imgpop+"'><param name='movie' value='"+imgpop+"'><p>Il vous manque le plugin flash pour visionner l animation.</p></object>");
	w.document.write("");
	w.document.write("</BODY></HTML>");
	w.document.close();
}
function PopupCentrer(page,largeur,hauteur,option) {
    var top=(screen.height-hauteur)/2;
    var left=(screen.width-largeur)/2;
    window.open(page,'',option+', width='+largeur+', height='+hauteur+', left='+left+', top='+top);
}
