var fDesc=new Array(); fDesc[0] = "Packet Spy is a tool designed with the purpose of monitoring incoming and outgoing packets from a given network. It is most useful in situations where you need to verify the security of a packet or monitor the responses invoked by the network. It features an onscreen view of sent/received packets and can also log results to a file for further examination.Features- Displays incoming and outgoing packets from a given source - Create filters to monitor for specific traffic - Output reports to log files for further examination - Displays IP/TCP/UDP packet header information"; 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 = ''; } }