var fDesc=new Array(); fDesc[0] = "MDB Viewer Plus is a viewer plus editor for opening Microsoft Access MDB and ACCDB database files. With this program, you can open, view, edit, filter, sort, import to, export from, modify, and search MDB and ACCDB files. It provides a convenient way to view and edit these databases. The table info screen even has the ability to copy the list of field names in a table to the clipboard. A developer can then paste this list into their source code for direct access."; 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 = ''; } }