var fDesc=new Array();
fDesc[0] = "AtmoCONTROL is an application for programming and logging MEMMERT appliances of the generation 2012 of appliances (from October 2012) with Ethernet and/or USB interface and corresponding equipment.
With AtmoCONTROL, you can
- graphically create, modify and save programmes on your computer with various parameters and transfer these to the appliance (description from page 13);
- read out, organise and document the internal log memory of appliances (description from page 28);
- configure user authorisations on USER ID USB sticks, with which the manual adjustment of individual or all parameters on the appliance can be prevented (description from page 30).";
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 = '';
}
}