// JavaScript Document
function sbp(picture_index,wwidth,wheight)
		{
			//if (ie)
			{
				if (wwidth==0) {wwidth=640;};
			  if (wheight==0) {wheight=480;};
				NewWindow=window.open('', '','width='+wwidth+',height='+wheight+',toolbar=no,directories=no,menubar=no,locations=no,status=no,scrollbars=yes,resizable=yes,fullscreen=no');
				NewWindow.document.open();
				NewWindow.document.writeln("<html>\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-2\">");
				NewWindow.document.writeln("<style type=\"text/css\">\n<!--\n a {text-decoration: none; color: #000;} \n a:hover {color: #fff;}\n --> \n </style>\n");
				NewWindow.document.writeln("<script type=\"text/javascript\">\n function pg_setup() { \n if (window!=top) { top.location.href=location.href; }; \n pg_resize(50,100); \n}\n");
				NewWindow.document.writeln("function pg_resize(w,h) {\n image = document.getElementById('pimg'); \n if (image.width>0 && image.height>0) { \n window.resizeTo(image.width+w, image.height+h); \n } \n } \n </script> \n </head>");
				NewWindow.document.writeln("<body leftmargin=0 topmargin=0 marginwidth=0 onload=\"pg_setup()\" style=\"font-family:Arial, Helvetica, sans-serif; font-size:11pt; background-color:#fff\">");
				NewWindow.document.writeln("<title>[ mave4 ]</title>");
				NewWindow.document.writeln("<div style=\"font-family:Tahoma, Helvetica, sans-serif; font-size:1em; text-align: center; background-color:#fff\">");
                NewWindow.document.writeln("<div style=\"position: absolute; top: 0px; left: 0px; background-color: #fa0; color: white; text-align: right; width: 100%; height: 1.5em; line-height: 1.2em;\"><a href=\"javascript:window.close();\">zamknij okno <strong>X</strong>&nbsp;&nbsp;&nbsp;</a></div>\n");			
				NewWindow.document.writeln("<div style=\"position: absolute; top: 50px; left: 50px; color: red;\">zaczekaj na załadowanie<br>obrazka</div>");
				NewWindow.document.writeln("<div style=\"position: absolute; top: 22px; left: 2px\"><a href=\"javascript:window.close();\"><img id=\"pimg\" src="+pictures[picture_index]+" border=0 alt=\"kliknięcie zamyka okno\"></a></div>");	
				NewWindow.document.writeln("</div>");
				NewWindow.document.writeln("</body>\n</HTML>\n");
				NewWindow.document.close(); 
				NewWindow.focus(); 		
			} 
			return;
		}				