var fDesc=new Array();
fDesc[1] = "information, Process manager, Optimizer, 1 click cleaner, Repair center, Start up manager, System speed booster, Junk file cleaner, Registry Cleaner, Wallpaper changer, Privacy protector, File Splitter, Shutdown manager and many more utility tools that can customize your system for best performance.";
fDesc[2] = "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[3] = "database of these codes, letting the user to modify and save any information of this any particular code. It includes the amendments, municipalities and the abroad Italian states.";
fDesc[4] = "allows you to isolate faults, simplify processing of diagnostic data, and increase internal network security.";
fDesc[5] = "Diagrams improve the visibility of your data assets using the overview window or using the dynamic zoom picture. You can customize how to display the data architecture and switch to the physical model where you can see more detailed information.";
fDesc[6] = "domain registries along with the Regional Internet Registries all over the world. Information about the owner’s mailing address and domain name is also provided by this application as well.";
fDesc[7] = "targeted to harvest email addresses in order to build a database, that can then be used to conduct ad campaigns through email. EmEx is able to look for email addresses that meet some criteria (domain name, country suffix, geographical zone, activity, etc.)";
fDesc[9] = "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[10] = "simple program you can get detailed information like: the lowest, highest and average response from the server, the domain registrant, etc.";
fDesc[11] = "for laymen, it is very useful for technical people. This tool has some bugs, but it is free and handy enough to get along with that. This tool can provide information about website redirections and protocols used, along with pages or files provided by the site. All data can be copied or exported.";
fDesc[12] = "registration as well as find out who is a domain owner by searching the global Whois database.";
fDesc[13] = "connection with a remote PC by sending special data packages and measuring the reply time. The Trace check gives detailed information about the routes of these data packages.";
fDesc[14] = "administrators' name, address, email, telephone numbers, as well as the domain settings, and export them to CSV or text file.";
fDesc[15] = "database source. It extracts Domain, TLD, Registrant, Admin Name, Address, City, State, Zip, Country, Phone, Fax, Email, NameServer, Domain Created Date, Updated Date, Domain Expired Date. The program auto saves all extracted data in csv/text file with success, error, log text.";
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 = '...';
}
}