var fDesc=new Array(); fDesc[0] = "CADPower is an add-on software to help you increase your productivity with AutoCAD and BricsCAD (hereafter called the CAD software). CADPower is a collection of frequently asked tools for various CAD operations. The tools are categorized in easily accessible categories like Polyline, Blocks, Attributes, Draw, Selection, Inquiry, Miscellaneous and so on. They are available as pull-down menus, toolbars, tabbed ribbons (AutoCAD 2012 and later), as well as from the command-line as directly callable commands. Most of the commands also offer command-line versions (without dialog boxes) which can also be used in automated processing using scripts."; 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 = ''; } }