var fDesc=new Array();
fDesc[0] = "The new CID-Pro is impressive for its ease of use and self-explanatory operation. All functions are menu driven and shown as symbols. In addition, substantial amounts of information from the unit are displayed and can be partially edited.
Features:
-Displays all connected units (chamber names and status).
-Displays all analogue and digital channels for any selected unit.
-Displays status information for the selected unit (automatic or manual operation, error reports).
-Dynamic contextual screen set up – elimination of unnecessary or confusing elements.";
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 = '';
}
}