var fDesc=new Array();
fDesc[1] = "sytem that is available whether it be Windows, Free BSD, Mac or Linux. As the name suggest it natively creates compressed RAR files which is a much better compression format as compared to the popular ZIP format.";
fDesc[2] = "application allows you to crack the protection of both ZIP and RAR files created with most applications. It uses two methods to achieve this task: a brute-force approach and a dictionary-based approach.";
fDesc[3] = "files. These files are transmitted and stored for long periods of times, and it is not rare for them to get corrupted or damaged. RAR Repair Tool allows you to recover files stored in corrupted RAR files.";
fDesc[4] = "is actually the opposite. Sometimes, we forget the passwords we set for our password-protected RAR files, and there is one way to do it. Since there is not a way to simply deduct the password of a RAR file directly, this application uses two methods: brute-force...";
fDesc[5] = "RarZilla is a single window application with no buttons whatsoever. This tool but that is freeware licensed and you can change its skin. Several skins files are available on the Phillip Winterberg’s web site";
fDesc[7] = "This incredible program scans the archive, detects the data structure and tries to recover as much information from the corrupted file as possible.";
fDesc[8] = "is programmed only for RAR/WINRAR archive files of version 2.x and 3.x. It gives two options to the end user to regain the password. The first is by using a brute force attack which tries all the combinations of the characters";
fDesc[9] = "e-book reader. It can be utilized for reading magazines, comics, and other similar things. It provides the user with the luxury of grouping infinite number of sorted pictures in a file and even password protect to assure security.";
fDesc[10] = "applications on the market, this one does only decompress your content, and it allows you to do so in a variety of ways. The main way to use The Extractor is by dragging-and-dropping files onto the main window. There, files will be added to the top pane.";
fDesc[11] = "multiple servers using multiple connections to each server. The program can automatically process PAR files and extract files from RAR archives.";
fDesc[12] = "and may contain one or more files and folders. RAR have capability to password protect your RAR archives and it can also encrypt your sensitive files in RAR format. But RAR Key is a utility for recovering the password of password protected RAR archives.";
fDesc[13] = "or a virus can infect your archived file or it can be damaged while downloading. This repair tool can recover as much data as possible from all these damaged archived files. It uses a very effective algorithm for recovering data and repairing archived files.";
fDesc[14] = "program can repair multiple files at once, multi-volume files, and solid archives. It can also repair password protected archives.";
fDesc[15] = "allows you to create a new RAR file by putting together the files contained in any number of existing RAR archives. Its simple yet effective interface allows you to select the input files to merge either one by one or by loading all the RAR files contained in a folder and its subfolders.";
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 = '...';
}
}