<!--TD SCRIPT-->

<!--

function navBar( tableCellRef, hoverFlag, navStyle ) {
  if ( hoverFlag ) {
    switch ( navStyle ) {
      case 1:
	tableCellRef.style.backgroundColor = '#cc6633'; break;
      case 2:
	tableCellRef.style.backgroundColor = '#cc6600'; break;
      case 3:
	tableCellRef.style.backgroundColor = '#e1e1ff'; break;
      default:
        if ( document.getElementsByTagName ) {
          tableCellRef.getElementsByTagName( 'a' )[0].style.color = '#c00';
        }
    }
  } else {
    switch ( navStyle ) {
      case 1:
        tableCellRef.style.backgroundColor = '#003366'; break;
      case 2:
        tableCellRef.style.backgroundColor = '#666699'; break;
      case 3:
        tableCellRef.style.backgroundColor = '#f4f4ff'; break;
      default:
        if ( document.getElementsByTagName ) {
          tableCellRef.getElementsByTagName( 'a' )[0].style.color = '#000';
        }
    }
  }
}

function navBarClick( tableCellRef, navStyle, url ) {
  navBar( tableCellRef, 1, navStyle );
  goTo( url );
}

function goTo( url ) {
  window.location.href = url;
}

     // -->

     // -->


