var fDesc=new Array();
fDesc[1] = "PC from numerous threats. The application is free, easy to use and, in a few minutes, will make your computer run much better. It scans your system searching for potential issues with your shortcuts, spyware, registry, and start up programs, and then enables you to clean them up.";
fDesc[2] = "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[3] = ", NTFS 2.0, FAT32 or FAT16 file systems in a snap. It retrieves any type of files lost due to accidental removal or deletion from the Windows Recycle Bin. The interface is really simple and intuitive, and does not include any complex feature.";
fDesc[4] = "from the Recycle Bin, in a DOS window, from Windows Explorer with the SHIFT key held down.";
fDesc[5] = "of lost files from servers, desktops, laptops, iPods etc. This incredible application enables you to retrieve any lost file under any circumstance, such as deletion, system crash, missing drive letters, hidden/lost partitions, virus attack, etc.";
fDesc[6] = "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[7] = "steps. This program can be very useful to recover files lost or damaged due to virus attacks, deletion from the Recycle Bin, power failure, among others.";
fDesc[8] = "storage media. It comes in two different versions: Personal and Professional editions. The Personal edition is free, but only recovers certain type of files.";
fDesc[9] = "various file systems including FAT, FAT16, VFAT, FAT32, NTFS, NTFS5 on various storage media.";
fDesc[10] = "Linux and some Unixes. It recovers files from any local disk lost or damaged due to virus attack, system crash or power failure, even if the file records are lost. However, it fails to recover damaged RAIDs or stripe sets and does not feature network capabilities.";
fDesc[11] = "user friendly and straightforward, as a matter of fact this tool is able to restore deleted files which were already located in the recycle bin or even if they were directly erased by Windows Explorer.";
fDesc[12] = "engine to quicky scan your PC for deleted files and get the files back to life.";
fDesc[13] = "find the specific file you may have deleted. Search most drives in under 1 minute. Uses read-only scanning.";
fDesc[14] = "Deleted File Recovery has a function that searches for deleted files on any version of Windows.";
fDesc[15] = "network and it also provides automatic file version protection for Microsoft Office 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 = '...';
}
}