var fDesc=new Array(); fDesc[0] = "The CDBF Shell extension allows you to view content or structure of DBF files in the 'Properties' window without opening them.
CDBFShell allows you:
- copy to the clipboard selected records.
- copy to the clipboard structure of the table.
- hide or show deleted records.
- sort DBF file by clicking on a column header.
- set default order of records.
- switch Ansi/OEM charset (Autodetect Ansi/OEM is available, too).
The CDBF Shell extension supports dBase III, dBase IV, FoxPro, Visual FoxPro and dBase Level 7 formats."; 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 = ''; } }