var fDesc=new Array();
fDesc[0] = "The remote control software allows to connect one or more multimeter-DMG series multimeters (DMK32,DMK62, DMK40, DMK22, DMK52, DMG210, DMG300, DMG700, DMG800) to one PC, and provides the following functions:
- Graphically show the measures read from the multimeters, in the form of ‘virtual’ instruments (gauges, bar graphs, displays, counters and more).
- Periodically sample a set of measurements defined by the user and save them on disk in different formats (MS-Access, ASCII text, MS-Excel).
- Periodically sample the multimeter energy meters value and save them in a database and so much more.";
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 = '';
}
}