var fDesc=new Array(); fDesc[0] = "Network Ping is the network diagnostic utility that allows visual monitoring of computers/devices activity in the network.
The notification feature helps to identify the machines ping reply status change by sending emails.
In this program you can get custom settings for range of endpoint IP Address (ping timeout, whether to send emails, when to send email notifications 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 = ''; } }