var fDesc=new Array();
fDesc[1] = "captured data as sequence of conversations between clients and servers.";
fDesc[2] = ", traffic, age, process EXE, status). Includes IP-Lookup Tools, Network Statistics, Remote Access Server, Rules, Port Database. It's Internet radar.";
fDesc[4] = "record every detail of PC and Internet activity. Record all programs used, keystrokes typed, web sites visited, and take screenshots.";
fDesc[5] = "70 features and functions. Tools to recover passwords, recover deleted files and easily tune-up the whole system";
fDesc[6] = "voice quality, bandwidth usage, call traffic and more functions. It supports SIP (Single In-line Package) and RTP/RTCP (Real-time Transport Protocol).. Available for Windows and Linux";
fDesc[7] = ", web services and their clients. It allows you to trace the messages which these applications use for communication.";
fDesc[8] = "inter-process communication.";
fDesc[9] = "transferring), Time synch, Traffic explorer and many others. Designed for users of all skills, has lots of unmatched features.";
fDesc[10] = "analyzing (sniffer) tool. myNetMon uses WinPcap, a windows port of Libpcap which is a packet capturing library.";
fDesc[11] = "researching network protocols.";
fDesc[12] = "installing on only one machine. NOTE: E.M. does not require IT's dedication to deploy, anyone can do it.";
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 = '...';
}
}