// (c) 1999 Bartosz Siedlarski
// bartel6@poczta.onet.pl

function okienko(obrazek,szer,wys)
{
//szer=szer
//wys=wys+40
config='toolbar=no,location=no,directories=no,status=no,menubar=no,width='+szer+',height='+wys+',scrollbars=no,resizable=yes'
o1 = window.open ("","o1",config)
//o1.document.write('<script language="JavaScript">');
//o1.document.write('self.moveTo(0,0);');
//o1.document.write('self.resizeTo(screen.availWidth,screen.availHeight)');
//o1.document.write('</script>');
o1.document.write('<body bgcolor="#FFFFFF" topmargin="0" leftmargin="0" margin="0">');
o1.document.write('<center><a href="JavaScript:self.close()"><img border="0" src="'+obrazek+'"></a></center>')
//o1.document.write('<br>');
//o1.document.write('<center><a href="JavaScript:self.close()">[ zamknij ]</a></center>')
o1.document.write('</body>');
}
