var fDesc=new Array();
fDesc[0] = "CMH Master - the program is intended for management and diagnostics of the headends CMH3000, MMH3000.
- PC to the headend is connected through appropriate USB interface
- maximal number of served modules - 256
- maximal number of served subracks or groups - 16
- automatic statusing of the headend configuration
- user-friendly graphical presentation of all programmable parameters
- obtaining information of the modules status
- fixing of diagnostic information in log-file
- changing headend’s settings in time by composed schedule of events
- possibility to send alarm SMS and remote control of the headend through GSM network by PC with GSM terminal.";
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 = '';
}
}