﻿
// Global Variables
var g_sPrevBackGrdClr;
var g_sPrevTextColor;

function accentMainMenuItem(sEleID)
{
  var oItem = document.getElementById(sEleID);

  g_sPrevBackGrdClr = oItem.style.backgroundColor;
  g_sPrevTextColor = oItem.style.color;

  oItem.style.backgroundColor = "gray";
  oItem.style.color = "white";
}

function deaccentMainMenuItem(sEleID)
{
  var oItem = document.getElementById(sEleID);

// Doesn't work in IE 6.0
//oItem.style.removeProperty("background-color");
//oItem.style.removeProperty("color");

  oItem.style.backgroundColor = g_sPrevBackGrdClr;
  oItem.style.color = g_sPrevTextColor;
}

function gotoPage(sURL)
{
  window.location.href = sURL;
}
