// GESTION DE LA NAVIGATION
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';}
}
d = 0;

// GESTION DE L'AFFICHE DANS LA PAGE
//---- Franais
function createSMALLfr(urlSMALL,largeur,hauteur,urlZOOM)
{
	document.write('<A HREF="javascript:createPOPUP(\''+urlZOOM+'\',\'Fermer\')"><IMG SRC="'+urlSMALL+'" WIDTH="'+largeur+'" HEIGHT="'+hauteur+'" HSPACE=0 VSPACE=0 BORDER=0 ALT="Cliquez ici pour agrandir" TITLE="Cliquez ici pour agrandir"></A>');
}
//---- Anglais
function createSMALLuk(urlSMALL,largeur,hauteur,urlZOOM)
{
	document.write('<A HREF="javascript:createPOPUP(\''+urlZOOM+'\',\'Close\')"><IMG SRC="'+urlSMALL+'" WIDTH="'+largeur+'" HEIGHT="'+hauteur+'" HSPACE=0 VSPACE=0 BORDER=0 ALT="Click here to enlarge" TITLE="Click here to enlarge"></A>');
}


// CRƒATION DU POPUP
function createPOPUP(chemin,langue)
{
	i1 = new Image;
	i1.src = chemin;
	html = '<HTML><HEAD><TITLE>Condat</TITLE></HEAD><style type="text/css">body,td,th {	font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif; font-size: 9px;} body {background-color: white;} a:link { color: gray; text-decoration: none;} a:visited {text-decoration: none; color: gray;} a:hover {text-decoration: underline; color: black;} a:active {text-decoration: none; color: gray;}</style><BODY LEFTMARGIN=0 MARGINWIDTH=0 TOPMARGIN=0 MARGINHEIGHT=0><CENTER><IMG SRC="'+chemin+'" BORDER=0 NAME=imageZOOM onLoad="window.resizeTo(document.imageZOOM.width+14,document.imageZOOM.height+60)"><BR><BR><a href="javascript:self.close();" class="lienmention">'+langue+'</a></CENTER></BODY></HTML>';
	popupImage = window.open('','Condat','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=1');
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close();
	if(popupImage.blur)
	{
		popupImage.focus();
	}
}