function df(Nazwa,W,H) {
okno = null;
W = W + 48;
H = H+ 48;
L = screen.width/2 - W/2
T = screen.height/2 - H/2 - 40

Data = Nazwa.substring(8,10) + "." + Nazwa.substring(5,7) + "." + Nazwa.substring(0,4)

okno = window.open('about:blank','','fullscreen=no,left='+L+',top='+T+',height='+H+',width='+W+',status=no,toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no,directories=no');
okno.document.open()
okno.document.write(
"<html>\n"
+"<head>\n"
+"<title>" + Data + "</title>\n"
+"</head>\n"
+"<body bgcolor=#ddddcc>\n"
+"<table style='border-collapse: collapse' cellpadding=8 cellspacing=0 border=1 bordercolor=#000000 align=center bgcolor=#ffffff><tr><td align=center>"
+"<img src=fotki/"
+ Nazwa.substring(0,10)
+"/d/"+Nazwa+">\n"
+"</td></tr></table>\n"
+"</body>\n"
+"</html>"
);
okno.document.close()
}

