﻿function onMouseOver() {
    document.getElementById("cntrlMenu").focus();
    if (document.getElementById("pnlMenu")) {
        document.getElementById("pnlMenu").style.height = "400px";
    }
}

function openInDialog(url,width,height) {
    var owin = window.radopen(url, null);
    with (owin) {
        set_modal(true);
        setSize(width, ( height > $(window).height() ? $(window).height() : height ));
        center();
        setActive(true);
    }
}

HttpManager.Browser.events.addHandler("onload", window, function() {
    if (document.getElementById("cntrlMenu")) {
        with (document.getElementById("cntrlMenu")) {
            onblur = function() {
                this.CloseSubmenus();
                document.getElementById("pnlMenu").style.height = "50px";
            }
        }
    }

});