var fDesc=new Array();
fDesc[0] = "This popular program lets you quickly and easily find any information required to qualify and to review welding procedures for ASME Section IX code compliance.
Key Features:
- ASME IX text with graphics and dynamic tables.
- ASME IX and AWS A3.0 welding terms definitions
- Search by process, variable type, paragraph number or by keywords
- Instantly find cross-referenced paragraphs, graphics and definitions
- Instantly lists the applicable ASME IX interpretations
- Display of interpretations through Turbo-INT™ Module D link (optional)";
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 = '';
}
}