
function MenuHover(menuitem)
{
	menuitem.style.borderLeftColor = 'white';
	menuitem.style.borderRightColor = 'white';
	menuitem.style.backgroundColor = '#336699'
}

function MenuMouseOut(menuitem)
{
	menuitem.style.borderLeftColor = '#003366';
	menuitem.style.borderRightColor = '#003366';
	menuitem.style.backgroundColor = '#003366'
}

function Goto(url)
{
	location.href = url;
}