var fDesc=new Array(); fDesc[0] = "MOBZPing provides a graphical display of the status of a number of hosts simultaneously. It does so by pinging these hosts every few seconds, each on a separate thread. The results can be browsed at a number of detail levels.

Managing the list of hosts is simple. Type the name of a host to add in the top left hand textbox, then press Enter to add it to the bottom of the list. Remove a host by clicking the delete button next to the host name. If a host has become temporarily unimportant (or you grow tired of the continuously red area in the graph), simply pause it using the pause button. The list of hosts is automatically saved in the user's roaming profile.

When MOBZPing is minimized, it settles itself as an icon at the bottom right of the screen. When the icon is a red flag, one or more hosts are off line. A green flag indicates that all hosts are on line; a blue flag signifies that all hosts are on line, but that some are paused. Additionally, MOBZPing displays balloon messages when the status of a host changes."; 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 = ''; } }