function zobrazfotku(jmeno){
 okno1=window.open("","fotka","resizable=no");
 okno1.document.open();
 okno1.document.write("<HTML>\n<HEAD>\n<TITLE>");
 okno1.document.write("Fotka\n</TITLE>\n");
 okno1.document.write("</HEAD>\n<SCR");
 okno1.document.write("IPT LANGUAGE=\"JavaScript\">\n");
 okno1.document.write("function velikost(){\n");
 okno1.document.write("window.focus(this);\nwindow.resizeTo(document.images[\"foto\"].width+10, document.images[\"foto\"].height+29);\n");
 okno1.document.write("}\</SCRI");
 okno1.document.write("PT>\n<BODY backgroundcolor=black leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\">\n");
 okno1.document.write("<CENTER>\n");
 okno1.document.write("<img src=\"",jmeno,"\" name=\"foto\" onload=velikost() onclick=\"window.close()\" STYLE='cursor: hand;'>\n");
 okno1.document.write("</CENTER>\n");
 okno1.document.write("</BODY>\n");
 okno1.document.write("</HTML>");
 okno1.document.close();
}