function nowe_okno(url, w, h, tytul) 
{
 		var style = "body{background:#ffffff; margin:0}";
 		style = style + ".rama {text-align:center; margin-top:1em;}";
		style = style + "a img { border:0 } "; 

    var winl = (screen.width - w) / 2;
    var wint = (screen.height - h) / 2;
		var win;
		w=w+15;
		h=h+45;		
    
		
		
			win = window.open('','','left=' + winl + ',top=' + wint + ',width=' + w + ',height=' + h + ',resizable=1,scrollbars=yes,menubar=no' );
			win.resizeTo(w,h);
			win.document.write('<html style="" ><head><title>' + tytul + '</title><style type="text/css">'+ style +'</style></head><body><div id="rama" > <a href="javascript:this.window.close()"><img src="'+ url +'" alt="" onclick="window.close()" ></a></div></body></html>');
			win.document.close();
}


  
