function popupwindow (adres, opis) {
	var popup=window.open('', '','width='+900+',height='+700+',toolbar=no,directories=no,menubar=no,locations=no,status=no,scrollbars=yes,resizable=yes,fullscreen=no');
	popup.document.open();
	popup.document.writeln("<html>\n<head>\n<title>"+opis+"</title>\n");
	popup.document.writeln("<link href=\"./stylesheets/grid.css\" rel=\"stylesheet\" type=\"text/css\" />\n");
 	popup.document.writeln("<link href=\"./stylesheets/content.css\" rel=\"stylesheet\" type=\"text/css\" /></head>\n");
	popup.document.writeln("<body>\n");
	popup.document.writeln("<div id=\"img\">");
	popup.document.writeln("\n<a href=\"javascript:window.close();\"><img src=\""+adres+"\" /></a><br /><br />"); 
	popup.document.writeln(opis);
	popup.document.writeln("<br /><br /><a href=\"javascript:window.close();\">Zamknij okno</a>\n</div>");
	popup.document.writeln("</body>\n</html>\n");
	popup.document.close(); 
	popup.focus();
}