
function obrazek(nazwa,wymiar1,wymiar2)
{
	center1=screen.width/2 - wymiar1/2;
	center2=screen.height/2 - wymiar2/2;
	okno=window.open("", "", "height="+wymiar2+",width="+wymiar1+", left="+center1+",top="+center2);
	okno.document.open();
        okno.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">');
  
	okno.document.write("\n<html>\n<head>\n<meta http-equiv=\"imagetoolbar\" content=\"no\">\n<meta http-equiv=\"content-type\" content=\"text/html; charset=iso-8859-2\">\n<meta name=\"robots\" content=\"index, follow, all\">\n<title>KONTRAPUNKT</title>\n<style>TD{ font-family: Arial, Verdana, Tahoma; font-size: 11px; color:#FFFFFF;  } A, A:LINK, A:ACTIVE    { color: #FFFFFF; text-decoration: none; } A, A:LINK, A:VISITED { color: #FFFFFF; text-decoration: none;  } A:HOVER {   color: #C0C0C0; text-decoration: underline; } </style>\n</head>\n<body ondragstart=\"return false\" onselectstart=\"return false\" oncontextmenu=\"return false\" style=\"margin:0px; background-color:#333333;\">\n<table height=23 width=100% cellspacing=0 cellpadding=0><tr><td style=\"text-align:right; background-image:url('gfx/mapa_big_07.jpg');\"><a href=javascript:window.close()><b>ZAMKNIJ</b></a>&nbsp;&nbsp;</td></tr></table>\n<a href=javascript:window.close()><img src="+nazwa+" border=0 alt='ZAMKNIJ'></a>\n</body>\n</html>");
	okno.document.close();
        }
 






