pictures = new Array(10);

pictures_big = new Array(10);
pictures[0]="images/mapka_polska_woje_mini.gif"
pictures[1]="images/mapka_wojewodztwo_mini.gif"
pictures[2]="images/mapka_miasto_mini.gif"
pictures_big[0]="images/mapka_polska_woje.gif"
pictures_big[1]="images/mapka_wojewodztwo.gif"
pictures_big[2]="images/mapka_miasto.gif"
		nn4=(document.layers)?1:0;
	ie=(document.all)?1:0;
	screen_w=screen.availWidth-20;
	screen_h=screen.availHeight-40;
		
		var current_picture=0;
		
		function LoadMidPicture(picture_index)
		{			
			current_picture=picture_index;			
			document.big_photo.src = pictures_big[picture_index];
			return;
		}		

		function ShowBigPicture(picture_index)
		{
			//if (ie)
			{
				NewWindow=window.open('', '','width='+700+',height='+500+',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</head>");
				NewWindow.document.writeln("<body leftmargin=0 topmargin=0 style=\"font-family:Arial, Helvetica, sans-serif; font-size:11pt; background-color:#ffffff\">");
				NewWindow.document.writeln("<title>DREWDOM</title>");
				NewWindow.document.writeln("<table width=100% height=100% style=\"font-family:Arial, Helvetica, sans-serif; font-size:11pt; background-color:#ffffff\">");
				NewWindow.document.writeln("<tr><td valign=center align=center>\n<a href=\"javascript:window.close();\"><img src="+pictures_big[picture_index]+" border=0></a></td></tr>");
				NewWindow.document.writeln("<tr><td align=center style=\"font-family:Arial, Helvetica, sans-serif; font-size:11pt; background-color:#ffffff\"><a href=\"javascript:window.close();\" class=\"foot\">Schody drewniane</a>\n</td></tr>");
				NewWindow.document.writeln("</table>");
				NewWindow.document.writeln("</body>\n</HTML>\n");
				NewWindow.document.close(); 
				NewWindow.focus(); 		
			} 
			return;
		}