var fDesc=new Array();
fDesc[0] = "LTBeam is a software which deals with the elastic "Lateral Torsional Buckling of Beams" under bending action about their major axis.
The lateral torsional buckling phenomenon (LTB) appears when the bending action reaches a critical level. It generates suddenly and simultaneously a lateral bending deformation and a longitudinal torsional deformation along the unrestrained length of beam.";
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 = '';
}
}