var fDesc=new Array();
fDesc[3] = "provides you with range of features like formatting options, highlight keywords, background and font color, font styles, print option, save as GIF option, Auto copy and many more.";
fDesc[4] = "and contain information about them. You can use Notepad to open NFO files, although they don't always look very well. But NFOpad is a freeware text editor and viewer especially designed for those files. Small, handy and specific.";
fDesc[5] = "those releases are anything but legal, but that goes outside of the scope of this article. What NFO-Viewer does is really simple, but extremely helpful.";
fDesc[7] = ", easy and convenient. ActualDoc keeps track of the documents you are currently working on and helps you to find any of them";
fDesc[8] = "documents you are currently working with and helps you to find any of them with three clicks. Filtering options and documents viewer included.";
fDesc[10] = "encryption module, UltraCrypt. It is fully compatible with NZB files. It also includes a much needed SSL support with a Bandwidth limiter function.";
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 = '...';
}
}