function showPict(larg, haut, pathPict)
{
chemin = pathPict;
var t = ""; 
var theWindow;

theWindow = window.open("","","bar=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width="+larg+",height="+haut+",screenX=50,left=50,screenY=50,top=50");

t += "<HTML>\n";
t += "<HEAD>\n";
t += "<TITLE>Gallery Zoom</TITLE>\n";
t += "<STYLE>body{margin: 0px 0px 0px 0px;}</STYLE>\n";
t += "</HEAD>\n";
t += " <BODY>\n";
t += "          <P ALIGN=\"center\"><A HREF=\"javascript:self.close()\" onmouseover=\"window.status='close\; return true\">\n";
t += "          <IMG NAME=\"imageZoom\" onLoad=\"window.resizeTo((document.imageZoom.width+10),(document.imageZoom.height+29))\" SRC=\"" + chemin + "\" BORDER=0 TITLE=\"Click on the picture to close the window.\"></A></TD>\n";
t += " </BODY>\n";
t += "</HTML>\n";
theWindow.document.clear();
theWindow.document.write(t);
}