function noweOkno(url, width, height) //podswietlenie okna NewsBoxa
{
	okno = open("","",'width=' + width + ',height=' + height + ',menubar=no,toolbar=no,location=no,directories=no,status=no,resizable=0');

	okno.document.open();
	
	okno.document.write("<html><head></head><body>");
	
	okno.document.write('<a href="javascript:window.close();" title="zamknij okno"><img border="0" src="'+url+'"></a></body></html>'); 
	
	okno.document.close();
}

