<!--

function displayWindow(url, width, height) {
        var pozx = (screen.width - width) / 2;
        var pozy = (screen.height - height) / 2;
        var Win = window.open(url,"displayWindow",'width=' + width + ',height=' + height + ',resizable=0,scrollbars=no,menubar=no,left=' + pozx + ',top=' + pozy + '' );
}


//-->