function openNewWindow(file, width, height) {
	var body = '<html><head><meta http-equiv="content-type" content="text/html; charset=iso-8859-2"></head><body style="margin:0px;padding:0px;"><a href="javascript:window.close()" title="Kliknij, aby zamkn±æ"><img src="graphics/news/news/big/'+file+'" border="0"></a></body></html>';
	
	var handle = window.open('', '', 'directories=no,location=no,menubar=no,resizable=no,status=no,scrollbars=yes,toolbar=no,top=0,left=0,width='+width+',height='+height+'');
	handle.document.clear();
	handle.document.write(body);
	handle.document.close();
}
