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] = "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] = "percentage, calculate the number of integrated files. Arrange all the output result according to the size or by name via its Sort feature, use CD/DVD cluster option to know the CD/DVD size.";
fDesc[4] = ", 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[5] = "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[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, in a DOS window, from Windows Explorer with the SHIFT key held down.";
fDesc[8] = "or corrupted partitions in all logical crashes. This incredible application is used to retrieve partition tables, boot sectors, formatted, lost, deleted files of laptops and desktop systems.";
fDesc[9] = "drive crashes. The program can also restore corrupt partition tables or boot sectors. It is a powerful tool that is capable of recovering data from the operating system partitions, like FAT and NTFS.";
fDesc[10] = "allows you to recover data lost due to overwritten deleted, formatted, damaged or corrupted files. This incredible application is used to retrieve any deleted files, including MS Office files, images, mp3, and zip files from laptops and desktop systems.";
fDesc[11] = "operating system to recover lost, deleted, formatted, virus affected, corrupted data, damaged or deleted partitions structures from your hard disk or storage media.";
fDesc[12] = "can be used as boot medium with full read and write access on NTFS drives for accessing files. Their main features of this utility are the full read and write access to NTFS files system. Its GUI is simple and easy to use. Avira NTFS4DOS works in Windows NT/2000//XP/2003 platforms.";
fDesc[13] = "lost or deleted after an accidental format, virus crash, partition loss software malfunction, file or directory deletion or even sabotage.";
fDesc[14] = "your important data, lost or deleted after an accidental format, virus crash, partition loss software malfunction, file or directory deletion or even sabotage.";
fDesc[15] = "due to overwritten deleted, formatted, damaged or corrupted partitions in all logical crashes. This incredible application is used to retrieve partition tables, boot sectors, formatted, lost, deleted files of laptops and desktop systems.";
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 = '...';
}
}