var fDesc=new Array(); fDesc[0] = "The WildPackets Network Calculator application was designed to be a multi-function utility for the network analysis professional. The Network Calculator includes the Hexpert Calculator (binary-decimal-hexadecimal base conversion), the IP Subnet Calculator (subnet/supernet address computation), and the Latency Calculator (latency calculation across multiple LANs and WANs) in one, convenient program."; 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 = ''; } }