var fDesc=new Array();
fDesc[1] = "uses industry standard IP protocols to allow devices to automatically discover each other without the need to enter IP addresses or configure DNS servers.";
fDesc[2] = "standards), Popular (used by many tools), Tested and Reliable (it has been available for years), easy to use for the final user (windows installer), Multi-platform (Windows NT/2000/XP/2003), commercial support in the website of CACE Technologies.";
fDesc[4] = "all packets without the target users' recognition. It can also detect the ?arpspoofer? program and block user definable session like firewall.";
fDesc[5] = "connections and vital IP statistics and examine individual packets.";
fDesc[7] = "driver, it requests all the packets from the network card driver (even the packets not addressed to this computer). The software will intercept all messages available on the network adapter.";
fDesc[8] = "Packet analyzer with HTTP file capture, a Graphical Packets Mode that shows traffic with visual effects, per-IP/per-Port/per-IP -Pair statistical information collection, and more. All in a single, easy to use Windows application. Freeware.";
fDesc[9] = "framed interface. In the upper left panel you will see the general information about each HTTP connection (time, client and server IP, URL, file length, status and information).";
fDesc[10] = "captured data as sequence of conversations between clients and servers.";
fDesc[11] = "traffic on your network. You will view connections, packets and data in real time. EtherDetect Packet Sniffer will show you all the information it gathers in a framed interface.";
fDesc[12] = "need third-party libraries, such as WinPCap, etc.";
fDesc[13] = ", firewalls or network connectivity. This test tool is very easy and friendly to use. The installation process is very simple and easy to perform and it didn’t require any additional library or program to run. UDP Test Tool works on any Windows based computer platform.";
fDesc[14] = "in scenarios where the security of a packet needs to be verified. It also monitors the responses triggered on the network from these packets. Packet Spy displays a screen of sent and received packets through the network. It can also log results to a file for further examination.";
fDesc[15] = "protocols. This utility captures from any network adapter and supports many advanced features to control the adapter and the arriving packets information. Packetyzer only runs under Windows platforms; but it can gather information from any devices running different OS.";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}