function otworz_okno(adres, w, h){
F=window.open('','','width='+w+',height='+h);
F.screenX=100;
F.screenY=100;
F.document.open();
F.document.write('<html><head><title>'+adres+'</title></head><body style="margin: 0px; padding: 0px; text-align: center;"><img src="upload/'+adres+'" alt="" style="cursor: pointer;" onclick="window.close();"></body></html>');
F.document.close();
}
