//Code for centering the window
loHorizontal = (screen.width - 400) / 2;
//vertical = (screen.height - 125) / 2;
loVertical = 0

function openLO(file) {
        if ((navigator.userAgent.indexOf("MSIE")!=-1) && !((navigator.appVersion.indexOf("3.") != -1) || (navigator.appVersion.indexOf("2.") != -1))) {
                windOptions = "toolbar=0,location=0,directories=0,status=0," +
                "menubar=0,scrollbars=1,resizable=1,width=416,height=125," +
                "top=" + loVertical + ",left=" + loHorizontal;
        } else if ((navigator.userAgent.indexOf("Mozilla")!=-1) && !((navigator.appVersion.indexOf("3.") != -1) || (navigator.appVersion.indexOf("2.") != -1))) {
                windOptions = "toolbar=0,location=0,directories=0,status=0," +
                "menubar=0,scrollbars=1,resizable=1,width=416,height=125," +
                "screenY=" + loVertical + ",screenX=" + loHorizontal;
        } else {
                windOptions = "toolbar=0,location=0,directories=0,status=0," +
                "menubar=0,scrollbars=1,resizable=1,width=416,height=125";
        }

        loWindow = window.open("","0",windOptions);
        loWindow.location.href= file;
        loWindow.focus();
}
