var fDesc=new Array(); fDesc[0] = "The STL Export Add-In for Revit is designed to produce a stereolithography file (STL) of your building model. The Revit team has developed a tool to export STL files from the Revit family of applications (Architecture, Structure, and MEP). STL is a popular file format for stereolithography used for rapid prototyping and computer aided manufacturing. An STL file describes the surface geometry of a 3D object."; 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 = ''; } }