function nowe_okno(url, w, h, tytul, opis) 
{
 		var style = "body{background:#000; margin:0; color:#fff;text-align:center;font-family:verdana,arial; font-size:12px;}";
 		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=yes,scrollbars=yes,menubar=no' );
			win.resizeTo(w,h);
			win.document.write('<html><head><title>' + tytul + '</title><style type="text/css">'+ style +'</style></head><body><div id="rama" ><p>'+ opis + '</p><img src="'+ url +'" alt="" onclick="window.close()"></div></body></html>');

		win.document.close();
}


  
