var fDesc=new Array();
fDesc[0] = "FRAME3DD is a program for the static and dynamic structural analysis of two- and three-dimensional frames and trusses with elastic and geometric stiffness.
Main features:
- Comprehensive documentation with numerous example files
- Multiple load cases in each analysis with gravity loading, partial trapezoidal loads, thermal loads, and prescribed displacements
- Matlab and spreadsheet interface, graphical ouput via Gnuplot
- Packages for Windows, OS X and Linux
- Shear deformation effects on geometric stiffness are included";
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 = '';
}
}