var fDesc=new Array();
fDesc[0] = "Diagnose and control software for air conditioning control systems from passenger coaches equiped with SATREC-MMA21 control unit.
For the microprocessor control units developed, it is necessary to have a diagnose and control software to ensure an efficient monitorization of the system parameters; it also makes easy the identification of occuring errors and malfunctions.
The system's recorded data can be also analyzed with this software.
-Serial communication on RS232/RS485 interface
-Monitoring digital inputs/outputs states in real-time
-Acquisition of 15 analogous variables
-On-line SATREC-MMA21 internal parameters adjustment
-"Black-Box" data acquisition and analyzing
-Events memory data acquisition and analyzing";
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 = '';
}
}