function goTo( url ) 
{
window.location.href = url;
}

function navBar( tableCellRef, hoverFlag, navStyle ) 
{
if ( hoverFlag ) 
	{
	tableCellRef.style.backgroundColor = '#0000C0';
	}
else 
	{
	tableCellRef.style.backgroundColor = '#000080';
	}
}

function navBarClick( tableCellRef, navStyle, url ) 
{
navBar( tableCellRef, 0, navStyle );
goTo( url );
}

