function goTo( url ) {
	window.location.href = url;
}

function navBar( tableCellRef, hoverFlag ) {
	if ( hoverFlag ) {
		tableCellRef.style.backgroundColor = '#c60';
	} else {
		tableCellRef.style.backgroundColor = '#2c75be';
	}
}

function navBarClick( tableCellRef, url ) {
	navBar( tableCellRef, 0 );
	goTo( url );
}