var fDesc=new Array();
fDesc[0] = "PowerVision Plus is used to configure, read and display the files of CIRCUTOR equipment with internal memory.
Main features:
- Download in local mode by communication of data recorded by portable equipment or fixed equipment with memory.
- Download in remote mode with time programming of special equipment such as the QNA and CVM-BDM.
- Automatic calculation of files, applying the EN-50160 standard or other levels defined by the user.";
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 = '';
}
}