var fDesc=new Array();
fDesc[0] = "testXpert® II brings you the benefits of more than 90 years’ of materials testing experience and almost 20,000 successful testXpert® installations worldwide. Learn more about the intuitive, easy-to-use software which anticipates your needs.
With testXpert®, Zwick Roell has set the standard for intelligent materials testing software. Unlike other software programs, testXpert® provides a uniform operating platform for all applications.";
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 = '';
}
}