var fDesc=new Array();
fDesc[1] = "formats (Direct CD, InCD, DLA, and Instant-Write) and is capable of performing surface scans, accessing data that Windows simply cannot read.";
fDesc[2] = ", ALZip is free, it handles over 30 compression formats, including ISO, plus it is twice as fast extracting files as WinZip. Among other useful features, the program also includes a password recovery tool.";
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] = "incredible application completely scans disks and saves as much information as possible. What is more, the program uses a lot of different algorithms, which considerably increases the amount and quality of the recovered data.";
fDesc[5] = "archive file or create an exact image of partitions on your hard disk for easy hard disk upgrade or complete/partial system recovery.";
fDesc[6] = "downloads from a remote PC if the connection was broken during the copy process (especially useful for Wi-Fi).";
fDesc[7] = "discs. 2. Recovers CD and DVD data created by digital cameras, camcorders, DVD recorders. 3. Burns discs. 4. More...";
fDesc[8] = "helps in rescuing damaged files and copies the correct data to the hard disk and also scans the disk sector fast. The application is specially designed to support many types of files such as documents, applications, images and media data.";
fDesc[9] = "deleted files and also to unformat corrupted files and folders by scanning the hard drives and the partitions. It is a reliable option to recover the damaged data, and even the reformatted folders as well as deleted files.";
fDesc[10] = "image. DriveClone Pro includes automatic ongoing system snapshots for easy recovery from software software-related data disasters.";
fDesc[11] = "any storage device. The program features a very simple and intuitive user interface, specially designed for beginners with a step-by-step wizard that guides you throughout the different steps of the process.";
fDesc[12] = "information from corrupted and unreadable Microsoft Excel files and exports the data to a new Excel file. Tool can repair Excel 2007 files (.xlsx).";
fDesc[13] = "supports any data CD or DVD (both R and RW), but it will not read neither audio CDs nor video DVDs. You can recover specific files, using the manual mode, or make a copy of the full disc automatically. Its high-speed performance and its level of accuracy are certainly its main assets.";
fDesc[14] = "from your hard drive, USB drives, ZIP, flash drives, SD Cards, MMC, and Firewire drives. It supports both FAT and NTFS file systems. It recovers files deleted after pressing Shift+Delete on the keyboard; erased from the recycle bin; files lost from the DOS command prompt; among others.";
fDesc[15] = "videos, folder structures and almost everything that is present on your disk drives. While creating backups you can name each backup differently and a file explorer helps you to locate files easily. You can also include folders and subfolders in backup.";
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 = '...';
}
}