var fDesc=new Array(); fDesc[0] = "This tool allow to read/open the Paradox tables on any computer. An application don't use any external libraries (no BDE, no ODBC, no ADO etc) and you may run this tool on computer without any additional setup/install. You may see the full Paradox system information (file version, header size etc), table structure and data in grid. All field types supported (including MEMO, BLOB, graphic, rtf-formatted memo etc) When Paradox table loaded, you may save the data to different file formats (CSV, Text, HTML, XML, MS Excel, MS Access, SPSS etc) or copy to clipboard. Additionally you may generate SQL-script with data dump. To convert the password-protected table you must enter the valid password in prompt dialog. All features are available via command-line arguments so you could automate any your tasks. Multilingual support allows to translate the interface to any language"; 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 = ''; } }