var fDesc=new Array();
fDesc[0] = "Welder Qualification Software for engineers and managers who track and manage welder qualifications to ASME IX, EN 287/EN ISO 9606 and AWS D1.1
Main Features:
- ensures compliance with codes by using built-in code rules from ASME IX,
EN 287/EN ISO 9606 and AWS D1.1 to help create and check documents
- generates ranges of approval and test requirements from code rules
- saves time by using built-in tables of ASME and AWS base materials and filler materials to help select suitable filler materials
- includes a welder maintenance log to keep qualifications up-to-date and maintain full welders history
- supports multiple welding processes on one welder performance qualification form
- searches by welder, process, joint type, material and other welder/process variables
- provides full traceability of document creation, editing and signing with electronic signatures
- allows the document header to be customised to include your own company name and logo
- can be run over a local area network (LAN) with multiple users
- integrates with other welding software such as WeldspecTM and Welding CoordinatorTM";
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 = '';
}
}