function navBarProperties( tableCellRef, iStyle ) {
    if ( iStyle ) {
        //Active
        tableCellRef.style.backgroundColor = '#639ACE';
    } else {
        //Inactive
        tableCellRef.style.backgroundColor = '#333366';
    }
}

function goToURL( sUrl ) {
    window.location.href = sUrl;
}