var fDesc=new Array(); fDesc[0] = "Based on the Drawing Compare feature in AutoCAD Architecture, this plug-in compares two versions of a drawing. Comparison differences are temporarily displayed on the Original drawing version in the drawing area (new objects in green, modified objects in yellow, moved objects in white, deleted objects in red). Click Plug-ins tab > DWG Compare, or enter DWGCOMPARE, to display the Drawing Compare palette."; 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 = ''; } }