var fDesc=new Array();
fDesc[0] = "Are your hosts reachable and services accessible? Use Pingear Server Monitor to be sure.
Pingear Server Monitor is a powerful and advanced monitoring tool for servers based on ICMP echo requests (pings) or TCP/IP connections.
Here are some key features of Pingear Server Monitor:
- Constant monitoring of server availability or service accessibility
- Supports Windows Service mode
- Provides per-host statistics
- Automatically saves tracert result if a host goes down
- Displays daily statistics by filter (all seconds, timeout, by range)
- Saves daily reports (at 00:00)
- Sends e-mail notifications, plays sound, shows pop-up messages";
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 = '';
}
}