<!--
function menuitemactivate ()
{
var theitem;
theitem = window.event.srcElement;
theitem.style.background='#96AAC5';
theitem.style.color='#FFFFFF';
}


function menuitemdeactivate ()
{
var theitem;
theitem = window.event.srcElement;
theitem.style.background='#D0DAE4';
theitem.style.color='#396896';
}

function submenuitemdeactivate ()
{
var theitem;
theitem = window.event.srcElement;
theitem.style.color='#AAC6DE';
theitem.style.background='#396596';
}

function topmenuitemactivate ()
{
var theitem;
theitem = window.event.srcElement;
theitem.style.background='#4276AF';
}


function topmenuitemdeactivate ()
{
var theitem;
theitem = window.event.srcElement;
theitem.style.background='#396596';
}


function GotoUrl(theurl)
{
window.location.href = theurl;
}
//-->