﻿/****** metody menici grafiku polozky v vertikalnim menu ******/
function onMouseOverSubMenu(p_Id, p_LabelId, p_IdH1)
{
    window.document.getElementById(p_LabelId).style.color = 'white';
    window.document.getElementById(p_Id).className = "tdSubMenuHover";
}

function onMouseOutSubMenu(p_Id, p_LabelId, p_IdH1)
{
    window.document.getElementById(p_LabelId).style.color = 'Black';
    window.document.getElementById(p_Id).className = "tdSubMenu";
}

/****** metody menici grafiku polozky v horizontalnim menu ******/
function onMouseOverRootMenu(p_IdCell, p_IdLabel)
{
    window.document.getElementById(p_IdLabel).style.color = '#ffff45';
}

function onMouseOutRootMenu(p_IdCell, p_IdLabel)
{
    window.document.getElementById(p_IdLabel).style.color = 'White';
}



function openWin() {
    var oWnd = radopen(null, "RadWindow1");
    var x = (screen.availWidth - 1000) / 2;
    oWnd.moveTo(x, 10);
}

function OnClientclose(sender, eventArgs) {
    //location.reload();
}
