//Otwórz okno ze zdjeciem
function zdjecie(URL,w,h) {
obrazek = new Image();
obrazek.src = URL;
if(w>600) w=600;
if(h>500) h=500;
//Pętla opóźnaijąca
nowe_okno=window.open("","_blank","toolbar=no,status=no,menu=no,scrollbars=no,resizable=no,width="+w+",height="+h+",top=30,left=30");
nowe_okno.document.open();
nowe_okno.document.writeln('<title>Marcin Dylla - photo</title>');
//nowe_okno.document.writeln('<SCRIPT language=Javascript>');
//nowe_okno.document.writeln('function wymiary() { ');
//nowe_okno.document.writeln('w=document.zdjecie.width; h=document.zdjecie.height; if(w>710) w=710; if(h>510) h=510;');
//nowe_okno.document.writeln('window.resizeTo(w+10,h+25);');
//nowe_okno.document.writeln('}');
//nowe_okno.document.writeln('</SCRIPT>');
//nowe_okno.document.writeln('<BODY topmargin=0 leftmargin=0 marginwidth=0 marginheight=0 onLoad="wymiary()">');
nowe_okno.document.writeln('<BODY topmargin=0 leftmargin=0 marginwidth=0 marginheight=0>');
nowe_okno.document.writeln('<IMG src='+URL+' border=0 name=zdjecie>');
nowe_okno.document.writeln('</BODY>');
nowe_okno.document.close();
}