function pokaz_duze(theURL,winName,w,h)
{
  LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
  TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
  settings ='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+''
pop = window.open(theURL,winName,settings);
pop.document.write('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2" />');
pop.document.write('<title>DEL ARTE</title><body bgcolor="white" topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0">');
pop.document.write('<div align=center><a href="javascript:window.close();"><img src="'+theURL+'" alt="kliknij, aby zamkn±æ okno" title="kliknij, aby zamkn±æ okno" border="0"></a></div>');
pop.document.write('</body>');
}