var fDesc=new Array();
fDesc[0] = "Autodesk® Revit® MEP Building Information Modeling (BIM) software for mechanical, electrical, and plumbing (MEP) engineers supports more accurate and efficient building systems design projects from concept through construction.
Main features:
- Design building systems more accurately using coordinated, consistent information inherent in the intelligent Revit MEP model.
- Analyze for efficiency with integrated analysis earlier in the process.
- Keep documentation coordinated and consistent with parametric change management technology.
- Deliver 3D models and documentation to support the building lifecycle.";
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 = '';
}
}