function openCenteredWindow(url, height, width, name, parms) {
   var left = Math.floor( (screen.width - width) / 2);
   var top = Math.floor( (screen.height - height) / 2);
   var winParms = "top=" + top + ",left=" + left + ",height=" + height + ",width=" + width;
   if (parms) { winParms += "," + parms; }
   var win = window.open(url, name, winParms);
   if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
   return win;
   }

function hf_new_window(hf_link,szerokosc,wysokosc){
	var pozycja_pozioma = (screen.availWidth/2)-(szerokosc/2);
	var pozycja_pionowa = (screen.availHeight/2)-(wysokosc/2);
	window.open(hf_link,'IIR','directories=no,height=' + wysokosc + ',left=' + pozycja_pozioma + ',location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no,top=' + pozycja_pionowa + ',width=' + szerokosc);
}

