


function S559_goTo( url ) {
	window.location.href = url;
}

function S559_navBar( tableCellRef, hoverFlag, navStyle ) {
	if ( hoverFlag ) {
		switch ( navStyle ) {
			case 1:
				tableCellRef.style.backgroundColor = '#e6eff5';
				break;
			default:
				if ( document.getElementsByTagName ) {
					tableCellRef.getElementsByTagName( 'a' )[0].style.color = '#e6eff5';
				}
		}
	} else {
		switch ( navStyle ) {
			case 1:
				tableCellRef.style.backgroundColor = '#BCD3E5';
				break;
			default:
				if ( document.getElementsByTagName ) {
					tableCellRef.getElementsByTagName( 'a' )[0].style.color = '#BCD3E5';
				}
		}
	}
}

function S559_navBarClick( tableCellRef, navStyle, url ) {
	S559_navBar( tableCellRef, 0, navStyle );
	S559_goTo( url );
}




// end

