var fDesc=new Array();
fDesc[0] = "Health Monitor monitors the performance and operability of Multiple NetVu Connected DVRs.
Main features:
- Provides proactive notification of DVR network, hardware and configuration errors to administrators
- Automatically monitors multiple remote NetVu Connected DVRs at set intervals
- Ability to manually poll all DVRs for immediate results
- A user-interface that provides an on-line report of all results
- Export reporting capability in 3 formats
- Email notification of events to multiple recipients";
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 = '';
}
}