var fDesc=new Array();
fDesc[0] = "Do you need to monitor multiple servers and have a quick visual indication of their status? Do you need to keep active a connection between your machine and a remote server either on your local network or internet while you work? Well then Multiple Tray Ping is for you!
Multiple Tray Ping is a easy to use ping monitoring program for Windows NT and Windows 9x*. It allows you to test the response of a remote hosts at set intervals using ICMP (Internet Control Message Protocol).
You can have multiple pings active at the same time and their status is indicated by a traffic light icon in the system tray. Each host can be configured to have it's own settings specifying ping frequency, ip address, packet SIZE and timeout etc.";
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 = '';
}
}