var fDesc=new Array(); fDesc[0] = "The OffsetInXref plugin can be used with AutoCAD to enable the OFFSET command to work with line contents of blocks and externally referenced drawings, associated arrays, dimensions and tables. Once loaded, the standard OFFSET command will work with blocks and externally referenced content: instead of responding "Cannot offset that object", the plugin will automatically copy the selected object into the current drawing"; 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 = ''; } }