var fDesc=new Array();
fDesc[0] = "CptASoft is a software utility used to configure the instruments and it allows the real-time reading of all the variables an instrument as.
Features:
-Software to set all instrument’s parameters on the
CPT Advanced models
-Reading of instantaneous variables and energy meters
-Management of up to 255 single remote CPT Ax’s over
a RS485 network (or of the single meter by the RS232)
-Management of an archive with various configurations";
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 = '';
}
}