var fDesc=new Array();
fDesc[0] = "DriveExplorer is a software developed for monitoring and online configuration of PowerFlex drives and communication adapters.
This software can also be used for monitoring and editing of parameters in a Bulletin 160 drive that uses a 160-RS1 adapter.
DriveExplorer displays the connected device(s) and peripherals(s) in a hierarchical view that is similar to that of Windows® Explorer. You can then monitor and edit the parameters in the connected devices and adapters.";
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 = '';
}
}