var fDesc=new Array();
fDesc[1] = "Firefox 1.0 - 2.0, Mozilla Thunderbird 1.0 - 2.0, Mozilla Suite 1.7 - 1,7x, SeaMonkey 1.0a - 1.1, and Netscape 7.x. This small and easy to use application creates profile backup files contacts, emails, cache, history, bookmarks, extensions, etc. and restore them later on.";
fDesc[2] = "still in development demonstrating the capacity and the desire of the user to create the perfect browser. There are many packages available covering practically every Windows, Mac and Linux Operating systems.";
fDesc[3] = "the Mozilla plug-in you can play with FireFox or SeaMonkey. The performance is better than with the IE plug-in and the size is smaller. Overall, the Quake Live game is fun and smooth to play. This is the future of gaming.";
fDesc[4] = "applications and accounts into one archive. Once you´ve imported your emails, you can search in the database for a given word, recipient, sender, subject or attachment. You can later backup your email messages burning a CD-ROM.";
fDesc[5] = "is available to the users. It provides a series of new features like : tabbed browsing, incremental find, inbuilt download manager, live bookmarking and lots of third party add-ons.";
fDesc[6] = "client. With this program, you can as well recover user Master Password, view browser Cookies and URL history.";
fDesc[7] = ", synchronize and deploy them to any other PC or browser. Forget about browser incompatibilities and enjoy Bookmark Base!";
fDesc[8] = "a very useful tool which converts your emails from SeaMonkey to any document format.";
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 = '...';
}
}