var fDesc=new Array();
fDesc[2] = "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[3] = "e-mail addresses from the list, based on the professional or national basis.";
fDesc[4] = "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[6] = "before and after views of registrations when anything changes. Receive email alerts when domains expire or become available.";
fDesc[7] = "features include automated check, customizable fields display, multiple projects, custom color coding, SMTP and proxy support";
fDesc[8] = "PageRank and Alexa Traffic Rank ratings. The program has a remarkably simple interface and supports most of generic and country-code TLD domains.";
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 = '...';
}
}