function showPict(larg, haut, pathPict)
{
chemin = pathPict;
var t = ""; 
var theWindow;

theWindow = window.open("","top","bar=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width="+larg+",height="+haut+",screenX=0,left=0,screenY=0,top=0");

t += "<HTML>\n";
t += "<HEAD>\n";
t += "<TITLE>Click Window to Close..</TITLE>\n";
t += "</SCRIPT>\n";
t += "</HEAD>\n";
t += " <BODY leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\" text=\"#000000\" link=\"#000000\" BGCOLOR=\"black\">\n";
t += "  <TABLE BORDER=\"0\" CELLPADDING=\"0\" CELLSPACING=\"0\" WIDTH=\"100%\" HEIGHT=\"100%\"BGCOLOR=\"#002d00\">\n";
t += "   <TR>\n";
t += "    <TD ALIGN=\"CENTER\" VALIGN=\"MIDDLE\">";
t += "      <TABLE BORDER=\"0\" CELLPADDING=\"2\" CELLSPACING=\"0\" BGCOLOR=\"#000000\">\n";
t += "        <TR>\n";
t += "          <TD>\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+26),(document.imageZoom.height+57))\" SRC=\"" + chemin + "\" BORDER=0 hspace=\"0\" vspace=\"0\" TITLE=\"Click on picture to close the window.\"></A></TD>\n";
t += "        </TR>\n";
t += "      </TABLE>\n";
t += "    </TD>\n";
t += "   </TR>\n";
t += "  </TABLE>\n";
t += " </BODY>\n";
t += "</HTML>\n";
theWindow.document.clear();
theWindow.document.write(t);
}
