<!--
        function over(imageName)
        {
            if (document.images)
            {
                document[imageName].src = "images/" + imageName + "_on.gif";
            }
        }

        function out(imageName)
        {
            if (document.images)
            {
                document[imageName].src = "images/" + imageName + "_off.gif";
            }
        }



function menuitemactivate ()
{
var theitem;
theitem = window.event.srcElement;
theitem.style.background='#003366';
theitem.style.color='gainsboro';
}


function menuitemdeactivate ()
{
var theitem;
theitem = window.event.srcElement;
theitem.style.background='gainsboro';
theitem.style.color='black';
}

function GotoUrl(theurl)
{
window.location.href = theurl;
}
//-->