var fDesc=new Array();
fDesc[0] = "Geomagic Qualify is the industry’s most easy-to-use 3D inspection software delivering the highest accuracy, speed and comprehensive reporting on the quality of as-built parts for first-article and production inspection, and supplier management. Geomagic Qualify enables manufacturers to perform fast, accurate, graphical comparisons between digital reference models and scans and probes of as-built parts for first-article inspection, production inspection and supplier quality management. This leading software allows manufacturers to rapidly increase product and manufacturing quality, rapidly identify process issues, and build productivity.";
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 = '';
}
}