var fDesc=new Array(); fDesc[0] = "Drawing Diagnostics gives you the ability to inspect drawings.

Main features:
- High scalability, utilizing all available computational resources during inspection;
- Ability to select geometry to be inspected: single entity, active sheet or entire drawing;
- Ability to select both constraint types to be analyzed and tolerance ranges;
- Built-in intelligence to suggested solutions for broken constraints;
- Selection and zoom-in to problem areas."; 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 = ''; } }