var fDesc=new Array(); fDesc[0] = "Cub Editor is a Microsoft® Access® Report formatting wizard that allows Access developers, or end-users to easily create or modify attractive report layouts based on existing tables or queries. Cub Editor looks and behaves like the Access report wizard, only it’s better because it gives you more control over the report formatting process, and because it allows you to change the layout of existing reports.

Inserting a field into a report with Cub Editor is a simple matter of dragging and dropping a field name from one list box to another. Cub Editor adds the appropriate controls to the report header, detail, and footer sections and then evenly spreads report controls horizontally across the report. So, you no longer have to make never-ending adjustments to “straighten out” report fields."; 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 = ''; } }