var fDesc=new Array();
fDesc[0] = "A complete Pacific Scientific's motor database of 800Tools includes all PMA, PMB, S-Serial and R-Serial motors isted in "Servo Motor Selection Guide (March 2001)". A new feature, the tuning wizard, was added in 800Tools and assists the user in tuning the velocity loop. For PC840 and PCE840, a firmware download function allows ARM firmware updating. See the PC/PCE800 manual and the help file for the 800Tools for more details.";
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 = '';
}
}