var fDesc=new Array(); fDesc[0] = "CAD Closure allows you to generate geometric closures from the dimension text (not line properties) in your CAD drawing. Works seamlessly with AutoCAD but it is not required as CAD Closure contains its own built-in viewer. The closure graphic is developed in real-time as you select the text. CAD Closure will compute area and check curves to see if they are tangential. Curves are cross checked between chord, radius and length. Multiple report writers built in."; 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 = ''; } }