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