var fDesc=new Array();
fDesc[1] = "It can scan for wireless networks and try to hack in. It can try to decrypt database files like those of dBase, Excel, MS Access, FoxPro, etc.";
fDesc[3] = "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[4] = "analysis, and advanced options. The program automatically captures and saves the conversations into a directory, which can be easily set.";
fDesc[5] = "captured data as sequence of conversations between clients and servers.";
fDesc[6] = "monitoring tools into a single interface. It includes a network sniffer (with filtering).";
fDesc[8] = "processes' details of your active connections. The program can view and dump data packets and even work as a packet sniffer for any IP.";
fDesc[9] = "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[11] = "Modem,ISDN,ADSL) and also support capturing packet base on the application(SOCKET,TDI etc).";
fDesc[13] = "shows the captured IP packets in the list. Packet content can be viewed in text or HEX, and the traffic can be filtered.";
fDesc[14] = "revolutionary new network management tool designed from the ground up with ease and functionality in mind.";
fDesc[15] = "It is an useful tool for network administrators, security specialists and network application developers.";
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 = '...';
}
}