var fDesc=new Array();
fDesc[1] = "forum is very big, with a lot of file uploads. Uploads include a variety of contents like software, games, videos computer, recreation, sports, etc.";
fDesc[2] = "supports Mac OS X and Linux. Unlike many other newsgroup readers/usenet readers out there, SABnzbd servers only one purpose: to download the binary files attached to newsgroup posts.";
fDesc[3] = "decode binary posts. The program is very easy to use and intuitive, and features a nice user interface. It supports SSL connections and allows you to download from multiple locations simultaneously to your news servers.";
fDesc[4] = "multiple servers using multiple connections to each server. The program can automatically process PAR files and extract files from RAR archives.";
fDesc[5] = "newsgroup. Just enter keywords and News Rover will find matching files in any newsgroup.";
fDesc[6] = "on the USENET. MIME, UUE, base64, yENC (multi-parts with auto-combining), XPAT-search, NZB-files, SSL-connections, RAR-files, Posting and much more.";
fDesc[7] = ", or use the built-in MP3 and file attachment search engine. News Rover also has picture gallery, password protection, and encryption.";
fDesc[8] = "problems you may find when downloading/posting files to a group, including a file extractor, a file decoder, an NZB downloader, a file joiner, and more. With NewzToolz, you can even set up your own server and create as many news groups as you wish!";
fDesc[9] = "Newsgroups? They are places on the Internet where people can post messages about particular topics that interest them. XanaNews allows you to read these messages and post replies; both to the main USENET newsgroups and also to other Private newsgroups.";
fDesc[10] = "connects to any NNTP servers and gathers data from any public or private group in multi-threaded mode.";
fDesc[11] = "URL tracking, unattended Usenet autoposter. Hidden web sites content downloader with automated decoder. Private file sharing.";
fDesc[12] = "the newsgroups that interest you and FotoVac's mass downloader will do the rest. Download pictures with FotoVac - the smart image grabber.";
fDesc[13] = "automatically. It's that simple. Stop, pause and play using familiar media player controls on the main window.";
fDesc[14] = "used as a way to verify that your account details are correct and/or to diagnose what goes wrong when a problem occurs. Freeware.";
fDesc[15] = "connection perform, and compare the performance to other installations.";
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 = '...';
}
}