var fDesc=new Array();
fDesc[1] = "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[2] = "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[3] = "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[4] = "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[5] = "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[6] = "retrieves files lost due to accidental removal or deletion from the Windows Recycle Bin. It enables you to either make a complete scan of the selected volume, perform a simple or advance search by selecting file masks, and also recover marked files.";
fDesc[7] = "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.";
fDesc[8] = "result of a virus, malfunctioning software, or simply by accident.";
fDesc[9] = "lost files due to virus attacks and software faults in minutes. It supports most hard and floppy disks, digital cameras and memory cards. The program scans your computer or drive and instantly shows you deleted files in a simple and intuitive user interface.";
fDesc[10] = "lost or deleted after an accidental format, virus crash, partition loss software malfunction, file or directory deletion or even sabotage.";
fDesc[11] = "SmartMedia, CompactFlash, Memory Sticks, and other types of removable media that have been lost due to accidental deletion or format, system crash, virus damage, power failure and much more.";
fDesc[12] = "the formatted hard disk, crashed hard disk or memory card, USB device, Zip device, Tape device, floppy disk, CD, DVD or any other media. And File Rescue Professional is very suitable to perform all these tasks.";
fDesc[13] = "engine to quicky scan your PC for deleted files and get the files back to life.";
fDesc[14] = "files (photos, documents,spreadsheets , mp3s, etc.) keeping their entire folder structures. It supports all types of storage media such as hard drives, digital cameras, USD drives, iPods, memory sticks, smart phones, to name but a few.";
fDesc[15] = "you thought were lost. The installation is very easy to perform. Documentation is available on the program (help file) and also on the website. Smart Undelete works on Windows 98/NT/ME/2000/XP/Vista .";
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 = '...';
}
}