function showPict(larg, haut, pathPict,filename)
{
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>Photograph from Akshaya Photo Gallery</TITLE>\n";
t += "</HEAD>\n";
t += " <BODY BGCOLOR=\"black\">\n";
t += "  <TABLE BORDER=\"0\" CELLPADDING=\"0\" CELLSPACING=\"0\" WIDTH=\"100%\" HEIGHT=\"100%\"BGCOLOR=\"white\">\n";
t += "   <TR>\n";
t += "    <TD ALIGN=\"CENTER\" VALIGN=\"MIDDLE\">";
t += "      <TABLE BORDER=\"0\" CELLPADDING=\"5\" CELLSPACING=\"0\" BGCOLOR=\"white\">\n";
t += "   </TR>\n";
t += "        <TR>\n";
t += "          <TD>" + filename +"</TD>\n";
t += "        </TR>\n";
t += "        <TR>\n";
t += "          <TD>\n";
t += "          <P ALIGN=\"center\"><A HREF=\"javascript:self.close()\" >\n"; //onmouseover=\"window.status='close\; return true\"
t += "          <IMG SRC=\"" + chemin + "\" BORDER=0 TITLE=\"" + filename + "\"></A></TD>\n";
t += "        </TR>\n";
t += "      </TABLE>\n";
t += "    </TD>\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);
}
