var fDesc=new Array();
fDesc[0] = "Autodesk® Robot™ Structural Analysis software provides structural engineers with advanced structural analysis capabilities for large, complex structures. The software offers a wide range of analysis capabilities that enable you to investigate the linear and true nonlinear behavior of any structure.
Interoperability with Autodesk® Revit® Structure software extends the Building Information Modeling (BIM) process, enabling engineers to more quickly perform comprehensive building and engineering analysis on a variety of structures.";
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 = '';
}
}