var fDesc=new Array();
fDesc[0] = "The testo EasyKool configuration and analysis software enhances
the functionality of the testo 556 and testo 570 instruments with
many useful functions:
- Instrument configuration via software.
- Customer, system and measurement data management.
- Data import from and data export to instrument.
- Creating, saving and printing measurement reports from
imported data.
- Commenting on measure values.";
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 = '';
}
}