var fDesc=new Array();
fDesc[0] = "MCS-CONNECT allows the user to monitor the status of the micro controller in real time and, with proper authorization, changes can be made to the system.
Main features:
- Remote communication via phone or Internet.
- Email/Test Message alarm alerts.
- Auto Print to file on alarms.
- Daily Scheduled print to files.
- Temperature and PSI conversion wizard.
- Extended history file save.
- Interactive P/T chart.
- Lookup tables.
- Hide / Show applicable data.
- Diagnostic Save/Auto-Send.";
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 = '';
}
}