var fDesc=new Array();
fDesc[1] = "the most efficient one. You can install keyloggers and other applications that record conversations. However Messenger Detect does not need to be installed on target computers.";
fDesc[2] = "traffic transmitted over a local host and a local network";
fDesc[3] = "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[4] = "both technical users (like IT managers, LAN administrators, web developers) and non-technical ones (like company managers, safe-concerned parents).";
fDesc[7] = "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[8] = "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[10] = "Windows system.";
fDesc[11] = "shows the captured IP packets in the list. Packet content can be viewed in text or HEX, and the traffic can be filtered.";
fDesc[12] = "revolutionary new network management tool designed from the ground up with ease and functionality in mind.";
fDesc[13] = "capture network traffic and enables you to analyze the data. Detailed packet information is available in a tree structure.";
fDesc[14] = "for Microsoft Windows.";
fDesc[15] = "95,98(se),NT,2000 and XP, aswell as Dialup (RAS) support on all Operation systems.";
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 = '...';
}
}