/*script permettant d'ouvrir une fenêtre avec l'image demandée et son titre */
function ImageMax(chemin, titre) {
html='<html><head> <title>'+titre+'</title> </head> <body style=" Background-color : #036; text-align : center;"><IMG src="'+chemin+'" BORDER=0 NAME=ImageMax onLoad="window.resizeTo(document.ImageMax.width+40, document.ImageMax.height+60)"></body></html>';
popupImage = window.open('','_blank','toolbar=0, top=10,left=10, location=0, directories=0, menuBar=0, scrollbars=0, resizable=1');
popupImage.document.open();
popupImage.document.write(html);
popupImage.document.close()
};