// JavaScript Document

function sbp(picture_index,wwidth,wheight){
	
	
	
	function get_pic_dim(myimage){

		var n = 0;
		
		
		while (n < 100000) {
			n++;
			if (myimage.complete) {
				wwidth = myimage.width+50;
				wheight = myimage.height+50;
			
			}
			if (wwidth < 51) wwidth=640;
			if (wheight < 51) wheight=480;
		}
	}	    
				
				var imgpath = "http://www.mave4.com/"+pictures[picture_index];
				var oImg = new Image();
		        oImg.src = imgpath;

			 	get_pic_dim(oImg);
						
				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("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">");
				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("<title>[ mave4 ]</title>\n");
				NewWindow.document.writeln("<script type=\"text/javascript\">\n function pg_setup() { \n pg_resize(100,100); \n if (window!=top) { top.location.href=location.href; }; \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("<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\" onMouseOver=\"pg_resize(100,100)\"></a></div>");	
				NewWindow.document.writeln("</div>");
				NewWindow.document.writeln("</body>\n</HTML>\n");
				NewWindow.document.close(); 
				NewWindow.focus(); 		
			
			return;
}				
