function otworzZdjecie(imageName,alt) {




        newWindow = window.open("","okno","scrollbars=no,width=1,height=1,left=0,top=0");
        newWindow.document.open();
        
        newWindow.document.write('<html><title>'+alt+'</title>');
        newWindow.document.write('<script TYPE="text/javascript">');
        newWindow.document.write('function dopasuj() {szer = document.fotografia.width;wys = document.fotografia.height;top.window.resizeTo(szer,wys+29);napis.style.display = "none";var x = (screen.width-szer)/2;var y = (screen.height-wys)/2;}');
        newWindow.document.write('</script>');
        newWindow.document.write('<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0"  onLoad="dopasuj();" onClick="window.close()">');
        newWindow.document.write('<center>');        
       //newWindow.document.write('<div id="napis"><p style="font-family: Verdana,Tahoma,Arial; font-size: 11px; color: #003262; margin:10;">Otwieram plik...</p></div>');-->
        newWindow.document.write('<img src='+imageName+' name="fotografia" alt='+alt+' vspace=0 hspace=0>');

        newWindow.moveTo((screen.width-newWindow.document.fotografia.width)/2,(screen.height-newWindow.document.fotografia.height)/2);

        //newWindow.document.write(newWindow.document.fotografia.width);
        //newWindow.document.write(newWindow.document.fotografia.height);

        newWindow.document.write('</body></html>');

        newWindow.document.close();
        newWindow.focus();
}

function otworzHTML(url, width, height) {
       var Win = window.open(url,"displayWindow",'width=' + width + ',height=' + height + ',resizable=0,scrollbars=yes,menubar=no' );
       
        var x = (screen.width-width)/2;
        var y = (screen.height-height)/2; 
        Win.moveTo(x,y);
}

