var fDesc=new Array();
fDesc[0] = "Festo Configuration Tool Plugin MTR-DCI is incorporated in the Festo Configuration Tool (FCT) and enables the configuration and commissioning of the motor unit type MTR-DCI.
- PlugIn for MTR-DCI V1.0.0.0 (I/O)
- PlugIn for MTR-DCI V1.1.2.0 (I/O)
- PlugIn for MTR-DCI V2.0.0.341 (I/O PB CO)
- PlugIn for MTR-DCI V2.1.1.4 (I/O PB CO DN).";
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 = '';
}
}