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