var fDesc=new Array();
fDesc[0] = "PC Tool E-products enables end-users and service technicians to maintain and service Grundfos E-motors, E-pumps and controllers. The PC Tool E-products communicates with GENIbus products from a PC running Microsoft Windows.
The PC Tool E-products enables you to
- monitor the operating status of E-products
- perform standard configuration of E-products
- perform custom configuration of E-products
- save logged data from E-products";
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 = '';
}
}