var fDesc=new Array(); fDesc[0] = "BaseNow consists of a set of components that work together to meet the data management and analysis needs. The topics in BaseNow Architecture describe how the various components work.

Object Browser is the main navigation element of the user interface. It displays all database connections, packages, and the BaseNow Agent. You can manage the Object Browser elements in two ways - using the Action button on the main toolbar and right-clicking on any of its elements.

Layout Toolbar enables you to change the layout of data in the program to suit your needs. The parameters that can be changed in the toolbar include Font, Grid Line Style, Record Navigator, Preview Column, Color, Column Headers, Card or Table view, etc. The program also memorizes the order of columns, groupings, sortings, and many other parameters that can affect the way in which data are displayed in BaseNow."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }