var fDesc=new Array(); fDesc[0] = "This is a tool for the AutoCAD users that displays the properties of any object in the drawing at any time. It waits in the background until you place the cursor over an object. An information "bubble" appears automatically with selected properties for this object. It works with AutoCAD LT 2000, LT 2000i, LT 2002, LT 2004, LT 2005, LT 2006, LT 2007, LT 2008 and LT 2009."; 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 = ''; } }