function COLLOFINE_goTo( url ) {
	window.location.href = url;
}

function COLLOFINE_navBar( tableCellRef, hoverFlag, navStyle ) {
	if ( hoverFlag ) {
		switch ( navStyle ) {
			case 1: {
				tableCellRef.style.backgroundColor = '#CC9999';
				break;
			}
			case 2: {
				tableCellRef.style.backgroundColor = '#CC9999';
				break;
			}
			default: {
				tableCellRef.style.backgroundColor = '#CC9999';
				break;
			}
		}
	} else {
		switch ( navStyle ) {
			case 1: {
				tableCellRef.style.backgroundColor = '#999999';
				break;
			}
			case 2: {
				tableCellRef.style.backgroundColor = '#CCCCCC';
				break;
			}
			default: {
				tableCellRef.style.backgroundColor = '#CCCCCC';
				break;
			}
		}
	}
}

function COLLOFINE_navBarClick( tableCellRef, navStyle, url ) {
	COLLOFINE_navBar( tableCellRef, 0, navStyle );
	COLLOFINE_goTo( url );
}


// end
