   function afficheVignette(cheminVignette,cheminMaxi)
    {
        document.write('<a href="javascript:afficheMaxi(\''+cheminMaxi+'\')"><img src="'+cheminVignette+'" alt="cliquez ici pour voir en grand"></a>');
        //document.write('<div id=\"image\"><a href="javascript:afficheMaxi(\''+cheminMaxi+'\')"><img src="'+cheminVignette+'" alt="cliquez ici pour voir en grand"></a></div>');
    }

    function afficheMaxi(chemin)
    {
        i1 = new Image;
        i1.src = chemin;
        html = '<html><head><title>TraktoImage</title><style type="text/css"><!-- @import url("newstyle.css"); --></style></head><body leftmargin=0 marginwidth=0 topmargin=0 marginheight=0><center><a href="javascript:window.close()"><img src="'+chemin+'" border=0 name=imageTest onLoad="window.resizeTo(document.imageTest.width+14,document.imageTest.height+32)"></a></center><center></center></body></html>';
        popupImage = window.open('','_blank','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=1');
        popupImage.document.open();
        popupImage.document.write(html);
        popupImage.document.close()
    };