<!--
param=null;
function show(jpeg,szer,wys){
var winl = (screen.width-szer)/2;
var wint = (screen.height-wys)/2;
var settings  ='height='+(wys)+',';
    settings +='width='+szer+',';
    settings +='top='+wint+',';
    settings +='left='+winl+',';
    settings +='scrollbars='+scroll+',';
    settings +='resizable=no';

	if(param!=null) param.close();
    obrazek=new Image();
    obrazek.src=jpeg;
	tlo="#FFFFFF";
	zapas_x=0;
	zapas_y=0;
	wys+=zapas_y;
	szer+=zapas_x;
	param=window.open('','nn',settings);
	var html=
	'<html>'+
		'<head>'+'<title>'+'Nowe Fakty Kaliskie'+'</TITLE>'+'</head>'+
		'<body bgcolor="'+tlo+'" topmargin="0" leftmargin="0">'+
		'<center>'+
		'<INPUT TYPE="IMAGE" SRC="'+obrazek.src+'" BORDER="0" width="'+szer+'" height="'+wys+'" ALT="zamknij" onClick="window.close()">'+
		'</center>'+
		'</body>'+
	'</html>';
	param.document.write(html);
}
-->