﻿// JScript File
function ShowSelectedMenu(id)
{
    var menu = document.getElementById("menuitem" + id);
    if (menu != null)
    {
        menu.style.borderColor="#000000";
        menu.style.cursor="pointer";
    }
        
}

function UnshowMenu(id)
{
    var menu = document.getElementById("menuitem" + id);
    
    if (menu != null)
        menu.style.borderColor="#b2b2b2";
}
function ShowSelectedBorder(id,image,borderColor, fontColor, cursor)
{
    var item = document.getElementById(id);
    if (item != null)
    {
        document.getElementById(image).style.borderColor=borderColor;
        item.style.color=fontColor;
        item.style.cursor=cursor;
    }
        
}
function showFontColor(id, fontColor)
{
    var item = document.getElementById(id);
    if (item != null)
    {
        item.style.color=fontColor;
    }
}
function UnshowBorder(id, image, color)
{
    var item = document.getElementById(id);
    
    if (item != null)
    {
        document.getElementById(image).style.borderColor = "#ffffff";
        item.style.color=color;
    }
}
function showTitleSelected(id)
{
    document.getElementById(id).style.color = "#bf0000";
}
function unselected(id, color)
{
    document.getElementById(id).style.color = color;
}
function showSelectedIcon(id, item)
{
    document.getElementById(id).src = "/images/" + item + "_icon_action_position.gif";
}
function displaySelectedIcon(id, item)
{
    document.getElementById(id).src = "/images/" + item + "_icon_normal_position.gif";
}
