// (c) 1999 Bartosz Siedlarski



function okienko(obrazek,szer,wys){

scrollbars='yes'
szer=szer+30

wys=wys+30



config='toolbar=no,location=no,directories=no,status=no,menubar=no,width='+szer+',height='+wys+',scrollbars='+scrollbars+',resizable=yes'

o1 = window.open ("","o1",config)

o1.document.write('<body bgcolor="black" topmargin="0" leftmargin="0" margin="0">');
o1.document.write('<table cellspacing="0" cellpadding="0" border="0" width="100%" height="100%"><tr><td align="center" valign="center"><a href="JavaScript:self.close()"><img border="0" src="'+obrazek+'"></a></table>')

o1.document.write('</body>');
}

