var fDesc=new Array();
fDesc[0] = "EView (Eview light) software has been designed for detection, polling and viewing data as well as remote programming of Nivelco’s ultrasonic compact level transmitter EchoTREK/EasyTREK provided with HART interface.
Installed in a PC the software allows the menu driven remote programming (device parameters + HART commands) with the exception of the access to the diagnostic,
simulation and calibration functions of the EchoTREK/EasyTREK. The software supports cyclic polling i.e. collecting data from the EchoTREK/EasyTREK units
detected (identified) and viewing of the measurement data.";
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 = '';
}
}