function nowe_okno(url, w, h, tytul, img) 
{
 		var style = "body{background:#000; margin:5px 0 0 0; text-align:center;}";
		style = style + "a img { border:0 } "; 

    var winl = (screen.width - w) / 2;
    var wint = (screen.height - h) / 2;
		var win;
		w=w+18+30;
		h=h+55+30;		
    
		
		
		if(img=='img')
		{
			win = window.open('','','left=' + winl + ',top=' + wint + ',width=' + w + ',height=' + h + ',resizable=0,scrollbars=no,menubar=no' );
			win.resizeTo(w,h);
			win.document.write('<html><head><title>' + tytul + '</title><style type="text/css">'+ style +'</style></head><body><a href="javascript:window.close()"><img src="'+ url +'" alt=""></a></body></html>');
		}
		else
		{
			win = window.open(url,'','left=' + winl + ',top=' + wint + ',width=' + w + ',height=' + h + ',resizable=1,scrollbars=yes,menubar=no' ); 
			win.resizeTo(w,h);
		}
				
		win.document.close();
}


  
