

function openWindow(url)
    {
        openSizableWindow(url, 700);
    }
    
    function openSizableWindow(url, nWidth)
    {
            var nHeight = 500;
            var winStats='toolbar=no,location=no,directories=no,menubar=no,scrollbars=yes,width='+nWidth+',height='+nHeight;
            if ((navigator.appName.indexOf("Microsoft")>=0))
            {
                    winStats+=',left='+(screen.width-nWidth)+',top=0';
                    floater = window.open("","newwindow",winStats);
                    floater.navigate(url);
                    floater.focus();
            }
            else
            {
                    winStats+=',screenX='+(screen.width-nWidth)+',screenY=0';
                    floater = window.open("","newwindow",winStats);
                    floater.location=url;
                    floater.focus();
            }
    }



