var fDesc=new Array();
fDesc[0] = "Drive View 7 is made for engineering LS Industrial System inverter (hereinafter, "Drive"). It has a function to monitor the devices connected with Drive View 7 in remote and support works necessary for Start-up and Maintenance.
Drive View 7 supports three communication modes (Modbus-TCP, Modbus-RTU, LS485).";
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 = '';
}
}