function OpenWindowAnt (url, width, height)
{
        var w = screen.width, h = screen.height;
        if(jsUtils.IsOpera())
        {
                w = document.body.offsetWidth;
                h = document.body.offsetHeight;
        }
        window.open(url, '', 'status=no,menubar=no,toolbar=no,location=no,scrollbars=no,resizable=no,width='+width+',height='+height+',top='+Math.floor((h - height)/2-14)+',left='+Math.floor((w - width)/2-5));
        //window.open(url, '', 'status=no,scrollbars=no,resizable=yes,width='+width+',height='+height);
}

