var fDesc=new Array(); fDesc[0] = "The i-model plugin for Revit allows users to save their Revit models in a way that lets users open them in Bentley MicroStation, Bentley Navigator, and many other Bentley building products, retaining the Revit properties information from the Revit model. The plugin is designed to help teams working in a mixed Bentley/Revit environment to be able to reference Revit models into a MicroStation-based design workflow for coordination purposes, interference detection, and similar tasks."; 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 = ''; } }