var fDesc=new Array();
fDesc[0] = "This sizing solution enables you to size and design your entire drive train (application + transformation + gearhead + motor) faster, easier and more reliably than ever before.
It lets you customize motion and load profiles, use Master-Slave function to adjust stiffness and backlash, size a complete project in a fraction of the time, and generate drawings and CADS on request.";
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 = '';
}
}