var fDesc=new Array();
fDesc[0] = "Structural Analysis Program for the Calculation of 2D and 3D Frameworks
RSTAB 7 represents a 3D framework program for the ambitious structural engineer that meets the requirements of modern civil engineering and mirrors the current state of art.
RSTAB is the basis of a modular software system: This basic module calculates internal forces, deformations and support reactions. For the following design, add-on modules are available which account for the specific requirements of materials and codes. Due to this modular conception of the software, a package can be assembled that meets the individual demands.";
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 = '';
}
}