var fDesc=new Array();
fDesc[1] = "Internet using the \"ARP\" protocol exploits. The program can protect your computer from such attacks. The program has a built-in network scanner and supports choosing the network adapter that you want to utilize.";
fDesc[2] = "different types of information about local network computers in just a few seconds. This incredible application gives you one-click access to many useful functions such as remote shutdown and wake up, Radmin integration and lots more.";
fDesc[3] = "incredible application uses multi-threading, so on fast computers you can scan more than 1000 port per second, making this tasks really fast. What is more, it contains descriptions for common ports, and can perform scans on predefined port ranges.";
fDesc[4] = "multithreaded, so on fast machines you can scan many computers at once.";
fDesc[5] = "and permission. When we open the program we find two toolbars, one window, and five tags at the end of the window. In the first toolbar we can find commands, view and help, in commands we can start scanning the different computers in the net.";
fDesc[6] = "network. This can be done from a local or a remote position. We are allowed to monitor our network and share connections, monitor servers, hosts, and services, create a network diagram and export it to Windows Visio.";
fDesc[7] = "security issues.";
fDesc[8] = "network scanner, file searcher and network explorer in one software.";
fDesc[12] = "route), (Internet speed test), LAN (LAN scanner), NetStat (identify creating process), PING, IPConfig, DNS (nslookup), Whois";
fDesc[14] = "this software. It pings computers, scans for listening TCP ports and displays shared network resources (including system and hidden).";
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 = '...';
}
}