  function popup_new_window(url, width, height, title, bgcolor) {
  	if (bgcolor === undefined) bgcolor = '#d9d9d9';
    var win = window.open('/loading.html', 'fat_' + new Date().getTime().toString(), 'scrollbars=no,resizable=no,width=' + (width + 0 ) + ',height=' + (height + 0) + ',left=50,top=50');
  	win.document.write('<html><head><title>' + title + '</title>');
  	win.document.write('<meta http-equiv="Content-Type" content="text/html; charset=windows-1250" />');
  	win.document.write('</head><body style="background-color: ' + bgcolor + '; color: silver;">');
  	win.document.write('<table id="foo" style="width: 100%; height: 100%;"><tr>');
  	win.document.write('<td style="font-family: \'Arial\', \'Helvetica\', \'sans-serif\';');
  	win.document.write(' font-size: 11px; font-weight: bold; text-align: center; vertical-align: bottom;">');
  	win.document.write('trwa ładowanie obrazka, proszę czekać...</td></tr></table><div id="tmpid" style="position: absolute;');
  	win.document.write(' top: 0px; left: 0px;"><img src="' + url + '" onLoad="foo.style.visibility = \'hidden\';" /></div></body></html>');

//   	win.document.write('<html><head><title>Obrazek ' + title + '</title><meta http-equiv="Content-Type" content="text/html; charset=windows-1250" /></head><body style="background-color: ' + bgcolor + '; background-image: url(\'' + url + '\'); color: silver;"></body></html>');


  	win.document.close();
//  	win.focus();
  	return false;
  }
