var fDesc=new Array();
fDesc[1] = "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[3] = "perform scan on predefined port ranges.The tool is designed with a user-friendly interface and is easy to use.";
fDesc[4] = "networks of any size. The LANsurveyor map provides a graphical interface so you can manage your network from anywhere on the network.";
fDesc[5] = ", spyware and other Internet security threats. Our managed service includes access to our \"Security Center\" web portal.";
fDesc[6] = "information. Whois supports IP address queries and automatically selects the appropriate whois server for IP addresses.";
fDesc[7] = "including parasites and trojans. The tool is designed with a user-friendly interface and is easy to use.";
fDesc[8] = "for locating servers that are not supposed to be on your network ( rogue DHCP servers ) as well as checking the expected output of known servers.";
fDesc[9] = "protocol, displays incoming, outgoing and summary traffic statistics, allows you to set traffic limits.";
fDesc[10] = "and browsing MIBs, performing Walk operation. The tool is designed with a user-friendly interface and is easy to use.";
fDesc[11] = "which are violating data access policy of their organization.";
fDesc[12] = "connection with your computer.The remote workstation, user, path, OS, permissions of the accessed folder.";
fDesc[13] = "deleted on a Windows 2000/XP system.";
fDesc[14] = "services and trojans. The system is highly configurable and features detailed logging, analysis of attacks";
fDesc[15] = "illegal data packages and scans for possible trojans and viruses.";
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 = '...';
}
}