// (c) 1999 Bartosz Siedlarski
// bartel6@poczta.onet.pl

function okienko(obrazek,szer,wys)
{
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('<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('</body>');
}

function new_window(source,szer,wys)
{
config='toolbar=no,location=no,directories=no,status=no,menubar=no,width='+szer+',height='+wys+',scrollbars=no,resizable=yes'
window.open (source,"new_window",config)
}