
function afficheMaxi(chemin, titre)
 {
 //Déclaration des variables 
 var largeur = 0;
 var hauteur = 0;
 var Left = 0;
 var Top = 0;
 var nom = 0;
 
 if (titre == 'mess1') {
	 var nom = 'Plan d\'accès CAVE 18';}
	 
 if (titre == 'mess2') {
	 var nom = 'Composition des paniers bio';}
	 
 if (titre == 'mess3') {
	 var nom = 'Evenement';}

 //Main
 i1 = new Image();
 i1.src = chemin;
 largeur = i1.width; 
 hauteur = i1.height;
 Left=(screen.width-largeur)/2;
 Top=(screen.height-hauteur)/2;

 html = '<HTML><HEAD><title>'+nom+'</title><link href="../scripts/style.css" rel="stylesheet" type="text/css"></HEAD><BODY LEFTMARGIN=0 MARGINWIDTH=0 TOPMARGIN=0 MARGINHEIGHT=0 bgcolor="#49291a" class="Menu" alink="#FFFFFF" link="#FFFFFF" vlink="#FFFFFF" ondragstart="return false;" onselectstart="return false;" oncontextmenu="return false;"><CENTER><IMG SRC="'+chemin+'" BORDER=0 NAME=imageZoom onLoad="window.resizeTo(document.imageZoom.width+24,document.imageZoom.height+50)"><DIV class="Menu"><a href="#" OnClick="window.close();">Fermer la fen&ecirc;tre</a></DIV><CENTER></BODY></HTML>';
 popupImage = window.open('','','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=0, width=500, height=400, left="Left", top=" + Top + "');
 popupImage.document.open();
 popupImage.document.write(html);
 popupImage.document.close()
 }


function fonc1(filiales) {
	if (filiales != '#') {
	top.location=filiales;
	}
}
