function displayWindow( url, width, height)
{bck= window.open(url,"displayWindow",'width=' + width + ',height=' + height + ',left=0,top=0,resizable=no,scrollbars=no,menubar=no,status=no' );
bck.document.write('<HTML><HEAD>');
bck.document.write('<META HTTP-EQUIV="Content-Type" content="text/html; charset=windows-1250">');
bck.document.write('<TITLE>Biłgorajskie Centrum Kultury</TITLE>');
bck.document.write('</HEAD>');
bck.document.write('<body bgcolor="silver" style="margin: 0; padding: 0">');
bck.document.write('<A href="javascript:window.close()">');
bck.document.write('<img src='+url+' border=0 width=' + width + ' height=' + height + '></A>');
bck.document.write('</body></html>');
}
