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