var fDesc=new Array();
fDesc[0] = "The software DSP Data Management allows optimizing, organizing and storing the measures made with the DSP Logger MX 300.
This software delivers a wide variety of measures that can be configured previously, giving a large and organized structure.
The software has a bunch of tools which allows to produce an accurate diagnostic about eventual failures in the equipment and its work condition.
A versatile control tool reports the condition of the measures, giving a fast and easy procedure for warning about the conditions of the equipment.";
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 = '';
}
}