var fDesc=new Array();
fDesc[1] = "displays the results in a web browser. The tool works with Internet Explorer or Firefox with a Plugin. The program resides as a small icon in your desktop system tray.";
fDesc[2] = "present are caused by spyware and processes that are not supposed to be running and actually are. For example, they say that if you can't connect to a wireless network outside of home, it must probably be spyware.";
fDesc[3] = "information. Whois supports IP address queries and automatically selects the appropriate whois server for IP addresses.";
fDesc[4] = "between the network hosts, and obtain detailed information about each one of them. Besides, the program will also display the \"whois\" information about the domain that you typed.";
fDesc[5] = ", traffic, age, process EXE, status). Includes IP-Lookup Tools, Network Statistics, Remote Access Server, Rules, Port Database. It's Internet radar.";
fDesc[6] = "interface, which makes it really easy to use even for beginners. This version features some improvements and bugs fixes including the addition of whois servers for .in, .ie, .me, .tel, and co.nl domains.";
fDesc[7] = "gathers for you news feeds in RSS, RDF and Atom formats, and podcasts. This application supports: RSS feed reading, RDF and Atom formats, and podcasts.";
fDesc[8] = "simple program you can get detailed information like: the lowest, highest and average response from the server, the domain registrant, etc.";
fDesc[9] = "ActiveX controls you will be able to make the most out of the Internet and work using your maximum capacity. One advantage of this package of tools is that it is easy to use.";
fDesc[10] = "to find your desired domain names quickly and easily. The built-in database helps you to search from generic top level domains and from country code top level domains as well.";
fDesc[11] = ", email addresses... Protect your privacy, avoid fraudulent sites. Locate web sites, email addresses and IP addresses on a 3D globe.";
fDesc[13] = "registration as well as find out who is a domain owner by searching the global Whois database.";
fDesc[14] = "capable of retrieving all contact e-mail addresses, phone and fax numbers, country name and expiration dates";
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 = '...';
}
}