

function menuitemactivate(event)
{
var theitem;
  if (event.target) {
    theitem = event.target;
    theitem.style.background='#8a8a8a';
    theitem.style.color='#FFFFFF';
  }
 else if (window.event){
    theitem = window.event.srcElement;
    theitem.style.background='#8a8a8a';
    theitem.style.color='#FFFFFF';
  }
}


function menuitemdeactivate(event)
{
var theitem;
  if (event.target) {
    theitem = event.target;
    theitem.style.background='#f1f1f1';
    theitem.style.color='#8a8a8a';
  }
 else if (window.event){
    theitem = window.event.srcElement;
    theitem.style.background='#f1f1f1';
    theitem.style.color='#8a8a8a';
  }

}

function GotoUrl(theurl)
{
window.location.href = theurl;
}
