function show(strng,x,y,tit)
{
var param;
var htm;
var bar;
bar = 'no';
if (x > screen.availwidth - 40 )
{(x = screen.availwidth - 35), (bar = 'yes');}
else
{(x = x + 40);}
if (y > screen.availheight - 40)
{(y = screen.availheight - 35), (bar = 'yes');}
 else 
{(y = y + 40);}
param='toolbar=no,status=no,scrollbars=' + bar + ',width=' + x + ',height=' + y;
nw=window.open(strng,'nw',param);
//nw.document.write('<html><head><title>')
//nw.document.write(tit)
//nw.document.write('</title></head><body><img src=')
//nw.document.write(strng)
//nw.document.write('></body></html>')
};
function pop_up(obiekt,x,y,okno){
var parametry;
	parametry='toolbar=no,status=no,scrollbars=yes,width=' + x + ',height=' + y;
	okno=window.open(obiekt,okno,parametry);
};


