var fDesc=new Array(); fDesc[0] = "OBJ Exporter For Revit lets you export solid bodies OBJ file. It supports both face level and body level colour. There is an option to control the file size and quality by specifying precision value; increasing precision value will increase the fineness and accuracy of the model as well as the file size. You can choose whether you want to tessellate at the body level or face level."; 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 = ''; } }