nn4=(document.layers)?1:0;
ie=(document.all)?1:0;
screen_w=screen.availWidth-20;
screen_h=screen.availHeight-40;
		
function ShowBigPicture(picture_index, opis)
	{
	//if (ie)
	{
	NewWindow=window.open('', '','width='+1000+',height='+700+',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<title>"+opis+"</title>\n");
	NewWindow.document.writeln("<link href=\"./stylesheets/grid.css\" rel=\"stylesheet\" type=\"text/css\" />\n");
 	NewWindow.document.writeln("<link href=\"./stylesheets/content.css\" rel=\"stylesheet\" type=\"text/css\" /></head>\n");

	NewWindow.document.writeln("<body>");
	NewWindow.document.writeln("<div id=\"img\">");
	NewWindow.document.writeln("\n<a href=\"javascript:window.close();\"><img src="+pictures_big[picture_index]+" /></a><br />");
	NewWindow.document.writeln(opis);
	NewWindow.document.writeln("<a href=\"javascript:window.close();\">Zamknij okno</a>\n</div>");
	NewWindow.document.writeln("</body>\n</html>\n");
	NewWindow.document.close(); 
	NewWindow.focus(); 		
	} 
	return;
	}				
