function ilustracja(w,h,url,tekst) {
 msg=open("","",'width='+(w+60)+',height='+(h+70)+',resizable=1,scrollbars=yes,menubar=no,top='+((screen.height-h-200)/2)+',left='+((screen.width-w-40)/2));
 msg.document.write("<html><head><title>"+tekst+"</title>");
 msg.document.write("<meta http-equiv=\"Content-Language\" content=\"pl\">");
 msg.document.write("<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">");
 msg.document.write("<link rel=\"stylesheet\" type=\"text/css\" href=\"css/fotka.css\">");
 msg.document.write("</head><body>");
 msg.document.write("<div align=\"center\">");
 msg.document.write("<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td>");
 msg.document.write("<p style=\"text-align:left\">"+tekst+"</p>");
 msg.document.write("<p style=\"text-align:center\"><a title=\"zamknij\" href=\"javascript:close()\"><img src=\""+ url +"\" width=\""+ w +"\" height=\""+ h +"\" alt=\"zamknij\"></a></p>");
 msg.document.write("<p style=\"text-align:right\"><a href=\"javascript:close()\">zamknij</a></p>");
 msg.document.write("</td></tr></table>");
 msg.document.write("</div>");
 msg.document.write("</body></html>");
 msg.document.close();
}
