function MenuOver(menuItem, tooltip, url)
{
    menuItem.style.cursor = "pointer";
    menuItem.style.backgroundColor = "transparent";
    menuItem.style.color = "#6F5FE9";
    menuItem.style.backgroundImage = "none";
    menuItem.style.textDecoration = "underline";
    window.status = url;
    menuItem.title = tooltip;
}
function MenuOut(menuItem)
{
    menuItem.style.cursor = "default";
    menuItem.style.backgroundColor = "transparent";
    menuItem.style.backgroundImage = "url(images/gradient2.gif)";
    menuItem.style.textDecoration = "none";
    menuItem.style.color = "black";
    window.status = "";
}
function SideMenuOver(menuItem, tooltip, url)
{
    menuItem.style.cursor = "pointer";
    menuItem.style.borderColor = "#9d9d9d";
    menuItem.style.backgroundColor = "#f1f1f1";
    menuItem.style.color = "#000000";
    window.status = url;
    menuItem.title = tooltip;
}
function SideMenuOut(menuItem)
{
    menuItem.style.cursor = "default";
    menuItem.style.borderColor = "#ffffff";
    menuItem.style.backgroundColor = "#ffffff";
    menuItem.style.color = "#000000";
    window.status = "";
}
function mDown(url,target) {
    if( target )
    {
        window.open(url, target);
    }
    else
    {
        window.location = url;
    }
}
