
/* ____________Nav Bar ______________ */
function f_nav_navBar( tableCellRef, hoverFlag, navStyle ) {
	if ( hoverFlag ) {
		switch ( navStyle ) {
			case 1:
				tableCellRef.style.backgroundColor = 'F4F1E3';
				break;
			default:
				//tableCellRef.style.backgroundColor = '#EDE7D0';
				if ( document.getElementsByTagName ) {
					tableCellRef.getElementsByTagName( 'a' )[0].style.color ='#c00';
				}
		}
	} else {
		switch ( navStyle ) {
			case 1:
				tableCellRef.style.backgroundColor = '#EDE7D0';       // '#036';
				break;
			default:
				//tableCellRef.style.backgroundColor = '#ddd';
				if ( document.getElementsByTagName ) {
					tableCellRef.getElementsByTagName( 'a' )[0].style.color = '#FFF000';
				}
		}
	}
}

function f_nav_navBarClick( tableCellRef, navStyle, url ) {
	f_nav_navBar( tableCellRef, 0, navStyle );
	f_nav_goTo( url );
}
function f_nav_goTo( url ) {
	window.location.href = url;
}