var fDesc=new Array();
fDesc[0] = "SigmaSelect allows you to select the individual components that comprise your servo system.
Main features:
- Intuitive editor for entering data pertaining to application load, mechanical transmission, and move profile.
- Import move profile from cam table array.
- A printable report is generated with each servo sizing containing a comparison of servo system capabilities vs application requirements.";
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 = '';
}
}