<!--
function NEW_navBar( tableCellRef, hoverFlag, navStyle ) {
	if ( hoverFlag ) {
		switch ( navStyle ) {
			case 1:
				tableCellRef.style.backgroundColor = '#FFA500';
				tableCellRef.style.color = '#000000';
				break;
			case 2:
				tableCellRef.style.backgroundColor = '#FFA500';
				tableCellRef.style.color = '#000000';
				break;
			default:
//				tableCellRef.style.backgroundColor = '#ccc';
				if ( document.getElementsByTagName ) {
					tableCellRef.getElementsByTagName( 'a' )[0].style.color = '#000000';
				}
		}
	} else {
		switch ( navStyle ) {
			case 1:
				tableCellRef.style.backgroundColor = '#999933';
				tableCellRef.style.color = '#FDF5E6';
				break;
			case 2:
				tableCellRef.style.backgroundColor = '#B0C4DE';
				tableCellRef.style.color = '#000000';
				break;
			default:
//				tableCellRef.style.backgroundColor = '#ddd';
				if ( document.getElementsByTagName ) {
					tableCellRef.getElementsByTagName( 'a' )[0].style.color = '#000';
				}
		}
	}
}


function NEW_navBarClick( tableCellRef, navStyle, url ) {
	NEW_navBar( tableCellRef, 0, navStyle );
	window.location.href = url;
}


//-->
