var fDesc=new Array(); fDesc[0] = "Polyhedral Mesh To Solid is a plug-in for AutoCAD designed to convert Mesh or Polyface Mesh objects to 3D solids. The application accepts multiple input entities for mesh to solid conversion and also converts mesh and solids to faces, lines or points. It can find the center of mass or volume of a 3D solid and many more."; 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 = ''; } }