<!-- 

	 function MyWndPic(wx,wy,title,picture)
	{
		wx = wx + 10;
		wy = wy + 10;
		px = (window.screen.width - wx) / 2;
		py = (window.screen.height - wy) / 2;	
		newWin = window.open("", "pic", "scrollbars=no,resizable=no,status=no,toolbar=no,directories=no,menubar=no,left=" + px + ",top=" + py + ",height=" + wy + ",width=" + wx);

		s = "<html><head><title>TOTO - Galeria: " + title + "</title></head>\n";
		s += "<body bgcolor=\"#000000\" topmargin=\"0\" leftmargin=\"0\" bottommargin=\"0\" rightmargin=\"0\">\n";
		s += "<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" height=\"100%\"><tr><td align=\"center\" valign=\"middle\">\n";
		s += "<a href=\"#\" onclick=\"self.close()\"><img src=\"" + picture + "\" alt=\"Kliknij ¿eby zamkn¹æ okno...\" title=\"Kliknij ¿eby zamkn¹æ okno...\" border=\"0\"></a>\n";
		s += "</td></tr></table>\n";
		s += "</body></html>\n";
		newWin.document.write(s);
		newWin.document.close();
		newWin.focus();
	}

     function OknoNews(wx, wy) {		
		px = (window.screen.width - wx) / 2;
		py = (window.screen.height - wy) / 2;		
		newWin = open("","str","scrollbars=yes,resizable=no,status=no,left=" + px + ",top=" + py + ",height=" + wy + ",width=" + wx);
		newWin.focus();
     }	

//-->
