var fDesc=new Array();
fDesc[0] = "drivesConnect is a powerful tool that can be used with DC1 and DA1 variable frequency drives in order to configure parameters, run diagnostics, and adjust PLC functionality settings.
Features:
- Clearly laid-out parameter structure.
- Parameters can also be easily edited offline.
- Monitor function: real-time process data, such as motor current and motor frequency, is graphically displayed.
- PLC functionality available for DA1; logical operators can be easily set up.
- Permits the use of communications via Bluetooth with a communications stick (DX-COM-STICK).";
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 = '';
}
}