function Fgoto( url ) {
  window.location.href = url;
}

function FBar( tableCellRef, hoverFlag, navStyle ) {
  if ( hoverFlag ) {
    switch ( navStyle ) {
      case 1:
        tableCellRef.style.backgroundColor = '#69c';
        break;
      default:
        if ( document.getElementsByTagName ) {
          tableCellRef.getElementsByTagName( 'a' )[0].style.color = '#c00';
        }
    }
  } else {
    switch ( navStyle ) {
      case 1:
        tableCellRef.style.backgroundColor = '#036';
        break;
      default:
        if ( document.getElementsByTagName ) {
          tableCellRef.getElementsByTagName( 'a' )[0].style.color = '#000';
        }
    }
  }
}

function FBarClick( tableCellRef, navStyle, url ) {
  FBar( tableCellRef, 0, navStyle );
  Fgoto( url );
}




