var fDesc=new Array(); fDesc[0] = "DBF Viewer 2000 is a simple program for viewing and editing all sorts of DBF database files. It can handle files created by dBase, Visual dBase, Foxpro, Visual FoxPro, Clipper, and other tools. In addition to being able to view the contents and structure of DBF files, you can also view and edit dBase III, dBase IV, dBase Level 7, FoxPro and Visual FoxPro format memo fields. Command line automation is fully supported, making it simple to repeat activities including data import, replacement and export, and clean-up of duplicate records."; 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 = ''; } }