﻿function onMouseOver() {
    $("#cntrlMenu").focus();
    if (document.getElementById("pnlMenu")) {
        document.getElementById("pnlMenu").style.height = "400px";
    }
   // $("#cntrlMenu").scrollIntoView();
}

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")) {
        $("#cntrlMenu").blur(function() {
            with (document.getElementById("cntrlMenu")) {
                CloseSubmenus();
                document.getElementById("pnlMenu").style.height = "50px";
            }
        });
    }
});

