var fDesc=new Array(); fDesc[0] = "yasPing is simple pinging utility with a graphical user interface. With this program you can test whether a remote host computer is reachable across a TCP/IP network and permits to measure the round trip time for packets sent from the local computer to the remote host. Ping tool is one of the basic network administration tools commonly used to diagnose problems in a local network (LAN) and to check the reachability of a remote computer or domain over the Internet."; 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 = ''; } }