var fDesc=new Array(); fDesc[0] = "PolyMonRT is a real-time monitoring system that allows users to create custom dashboards.
PolyMonRT does not persist monitoring data to a database and therefore does not require a back-end database to function.

Main features:

- Easily customizable dashboards (drag and drop)
- Color coded threshold values
- Polling Intervals fully customizable at individual monitor level
- Fully customizable polling retention time periods at individual monitor level with Min/Max/Avg counters
- Ability to run monitors under a different user than currently logged in user
- Save dashboard definitions to plain text xml files"; 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 = ''; } }