var fDesc=new Array(); fDesc[0] = "Steal from Drawing is a program that allows the user to import items from another drawing into the current drawing. Upon running the program with the command syntax 'Steal' at the AutoCAD command-line, the user is prompted to select a drawing file (DWG/DWT/DWS) from which to steal items. Following a valid selection, if the selected drawing contains items not already present in the current drawing, a dialog will appear displaying items available for import."; 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 = ''; } }