var fDesc=new Array();
fDesc[0] = "The software RM-404 has been designed to take maximum advantage of the new range of TV EXPLORER II/II field meters and turn them even in a more powerful tool.
This program allows to monitor every measure obtained from the field meter and to store them on a PC, allowing users to:
- Analyze the performance of the signals as time goes.
- Control signals through alarms in order to keep them within optimal parameters.
- Receive any changes on the measuring signals by e-mail.
- Generates reports with all the measures that is monitoring.
- Send automatically reports by email.
This software has a wide range of possibilities when analyzing the different types of signals, both TV (terrestrial and satellite) and pure carrier signals generated externally or by the user.";
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 = '';
}
}