var fDesc=new Array();
fDesc[0] = "Fast, efficient sizing for uniform bending loads, axial loads and single or multiple equal span members.
"Works like an interactive version of a stud manufacturer's catalog with complete flexibility of inputs."
Main features:
- Intuitive user-friendly interfaces
- Includes 2007 NASPEC as adopted in 2009 IBC
- Walls (axial load-bearing or non-bearing)
- Floors
- Ceilings
- Rafters
- Span/Load Tables and Convenient Member Solver Functions
- Headers and beams
- Posts and Braces
- Screw and Weld capacity
- Deflection Track
- Warping Torsion";
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 = '';
}
}