var thisbrowserHilite
if(document.layers){ thisbrowserHilite='NN4'; }
if(document.all){ thisbrowserHilite='IE'; }
if(!document.all && document.getElementById){ thisbrowserHilite='NN6'; }

function highlight(menuitem, bgcolor) 
{
if(thisbrowserHilite=='IE') document.all[menuitem].style.backgroundColor = bgcolor;
if(thisbrowserHilite=='NN6') document.getElementById(menuitem).style.backgroundColor = bgcolor;
}