<!--
function menuitemactivate ()
{
var theitem;
theitem = window.event.srcElement;
theitem.style.background='#8a8a8a';
theitem.style.color='#FFFFFF';
}


function menuitemdeactivate ()
{
var theitem;
theitem = window.event.srcElement;
theitem.style.background='#f1f1f1';
theitem.style.color='#8a8a8a';
}

function GotoUrl(theurl)
{
window.location.href = theurl;
}
//-->