function obrazek(co, szer, wys) {
	if(window.okienko) window.okienko.close();
	lewo=(window.screen.width-szer)/2; gora=(window.screen.height-wys)/3;
	okienko=window.open('', 'pic', 'width='+szer+', height='+wys+', left='+lewo+', top='+gora+', scrollbars=no');
	okienko.document.write('<html><head><title>'+co+'</title></head><body bgcolor="white" leftmargin="0" topmargin="0"><a href="javascript:window.close()"><img src="'+co+'" width="'+szer+'" height="'+wys+'" border="0"></a></body></html>');
	okienko.focus();
}