var fDesc=new Array(); fDesc[0] = "LayerExpress is a set of tools designed to fill the void left by the Express Tools layer functions that were left out of AutoCAD R2000 . LayerExpress doesn't add any capabilities to the Express Tools. In fact some of the commands offer less functionality than their Express Tools counterparts, so it is not recommended to load these functions on a system that has Express Tools installed. Not all Express Tools layer functions are included in Version 1.1 of the LayerExpress tools."; 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 = ''; } }