var fDesc=new Array();
fDesc[0] = "Steel Shapes is a program for AutoCAD that draws End, Side and Top views of common structural steel shapes (members), conforming to AISC Steel Construction Manual, 13th edition.
Features include:
-Imperial or Metric sizes
-Inch, Feet, Millimeter or Centimeter measurements
-End, Side and Top views
-Top, Middle or Bottom insertion points
-Detailed dimensional data for each structural steel shapes
-Optional center line
-Optional end view hatch
-Command to list the basic properties of an item";
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 = '';
}
}