var fDesc=new Array(); fDesc[0] = "The Visual Open DB is a generic data analysing application that allows you to query any valid data source. It can be used by end users to perform data analysis and developers to interrogate database tables and views.

The program can work with files of the following formats:

Microsoft Access Database (*.mdb)
Paradox Table (*.db)
Visual FoxPro Database (*.dbc)
Microsoft Excel (*.xls)
DBase files (*.dbf)
Microsoft Data Link file (*.udl)
Text files (*.txt)
Log files (*.log)
CSV files (*.csv)
Microsoft XML Rowset (*.xml)

The Visual Open DB connects to a valid data source via the Windows Data Link file (*.udl), using MDAC 2.5 or later. This enables you to access any ODBC or OLEDB compliant datasource. Visual Open DB has been developed predominately for the non technical user, it is not a front end for SQL. No knowledge of SQL is required, all actions are data driven point and click."; 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 = ''; } }