<!--
function p(url, wdt, hgt) {
var szer = wdt + 16;
var wys = window.screen.height - 60;
if (hgt <= wys) {
var popup = window.open(url,"",'width=' + szer + ',height=' + hgt + ',left='+ (window.screen.width-wdt)/2+',top='+ (wys-hgt)/2+',resizable=yes,scrollbars=1,menubar=no' );
} else {
//if (hgt > wys) {wysokosc = wys} else {wysokosc = hgt}

var popup = window.open(url,"",'width=' + szer + ',height=' + wys + ',left='+ (window.screen.width-wdt)/2+',top=0,resizable=yes,scrollbars=1,menubar=no' );
}
}
//-->             