
/***************************************
* Zoom - Popups Window
***************************************/

function afficheMaxi(chemin, titre)
    {
 
    i1 = new Image();
    i1.src = chemin;
 
    html = '<HTML><HEAD><TITLE>'+ titre +'</TITLE></HEAD><BODY LEFTMARGIN=0 MARGINWIDTH=0 TOPMARGIN=5 MARGINHEIGHT=0 body bgcolor="white"><CENTER><IMG style="cursor: pointer;"SRC="'+chemin+'" HSPACE=0 VSPACE=0 BORDER=0 NAME=imageTest onLoad="window.resizeTo(document.imageTest.width+24,document.imageTest.height+60)\" onclick=\"javascript:window.opener.focus();window.close()\"></A></CENTER></BODY></HTML>';
    popupImage = window.open('','_blank','toolbar=0,directories=0,status=0,location=0,menubar=0,resizable=auto,scrollbars=auto,width=500, height=375, left=250, top=125');
    popupImage.document.open();
    popupImage.document.write(html);
    popupImage.document.close()
    
    }
    

