var fDesc=new Array();
fDesc[0] = "Fast, accurate, productive, just a few ways engineers describe RISA-3D. Easily the most popular general 3D analysis/design software available, the intuitive interface and familiar spreadsheets help you solve your next problem in minutes, not hours.
Packed with the most current steel, concrete, cold-formed steel, masonry, aluminum and timber design codes, RISA-3D gives you the tools to tackle multi-material projects with confidence. RISA-3D also integrates seamlessly with RISAFloor and RISAFoundation, including links to top detailing, drafting, and BIM packages for a complete building design solution.";
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 = '';
}
}