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] = "card, removable drives, floppy disks, etc. These files (or folders) stay in the system once they are deleted because of accidental actions, formatting, Windows reinstallation, hard disk failure, empty the Recycle Bin, partition errors, by mistake, etc.";
fDesc[3] = "game for people who have visual memory. It is one of the most addicting games ever. Once you start playing, you simply can't stop. It has colorful graphics and suspenseful music and sound effects. It is user friendly, and the instructions are clear and easy to understand.";
fDesc[4] = "well as a useful wizzard that walks you through the process. The program allows you to choose the type of files you want to recover, as well as the type of search you want to perform. The trial version only allows to recover files up to 35Kb.";
fDesc[5] = "files from NTFS/NTFS5 and FAT12/FAT16/FAT32 files systems at high speed. It allows you to recover accidentally deleted files or folders, permanently deleted files using the keys Shift + Delete, among others.";
fDesc[6] = "almost any type of lost files from servers, desktops, laptops, iPods etc. This incredible application enables you to retrieve any file from devices with unknown file systems including Hard Disk, external ZIP/USB drive,removable SmartMedia, etc.";
fDesc[7] = "deleted data in cases of hardware failure, operating system crashes, errors on deleting files, viruses or malicious attacks. It makes virtual RAIDS, recover data off a CD or DVD, recover encrypted files, compressed files and alternative data streams.";
fDesc[8] = "Recycle Bin, the command line window (DOS) or a network share; they can be recovered along with the original folder name and dates even if overwritten by new data.";
fDesc[9] = "system. The application can search for determined file types from NTFS and FAT formattes units, either pictures, movies, songs, documents and all kind of files in general.";
fDesc[10] = "partitions. Moreover, you can recover lost mails from Outlook or from Windows Mail. Select the kind of scanning you prefer, Quick, Guided, Full or Advanced.";
fDesc[11] = "accidentally deleted from hard disks and memory cards. This incredible application can recover files damaged by virus attacks, power failures and software faults or files from deleted and formatted partitions";
fDesc[12] = "eleven new languages available. In fact, we can change the program language on the go, from the user's interface itself. This program runs under the following operating systems: Windows Vista, XP, 2003, 2000, NT, ME, 98, and 95.";
fDesc[13] = "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[14] = "partitions with File Recover. Adjust settings at your please or filter files so that you find them quickly. A powerful and easy-to-use tool to have on your pc.";
fDesc[15] = "from the Recycle Bin or directly deleted intentionally or by accident. You can recover files deleted by viruses, uninstallers, DOS programs. Supports compressed and encrypted files.";
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 = '...';
}
}