var fDesc=new Array();
fDesc[0] = "FrameSolver 2D for Windows is the easiest and the quickest way to model and analyze planar frames, trusses, and multi span beams.
FrameSolver 2D has powerful graphical modeling capabilities with a Flexible Graphical User Interface (GUI) for pre/ post-processing.
For the beginner or the professional, FrameSolver 2D is the simplest way to model and analyze beams, trusses, and frames.
Define your model with the easy-to-use interface in just a few mouse clicks. Without any previous experience or knowledge of Structural analysis software.";
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 = '';
}
}