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] = "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[3] = "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[4] = "The complete set of tools allows you to recover your lost data, reset Windows passwords, make computer system backups, securely erase data, control disk condition, manage partitions and a lot more.";
fDesc[5] = "drives and devices, lost due to accidental deletion, system crashes, drive formatting and other reasons. The program features a very simple and intuitive wizard-like user interface, very suitable for beginners.";
fDesc[6] = "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[7] = "What it does is that it actually skips the bytes, which are not readable from a file and copies all other bytes, therefore it extracts maximum data, which is normally not done by copy-paste operation.";
fDesc[8] = "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[9] = "defective CDs, DVDs, floppy disks. It supports recovering all types of files like documents, images, videos, etc.";
fDesc[10] = "discs when regular software can't read them fully or partially. This tool extracts the intact portion of your data and tries to recover problem areas. You can either choose to recover selected files, or save an image of the whole disc. The program works under Windows 2000/XP/2003/Vista and supports all types of CD and DVD media with ISO or UDF file systems, including discs burned by video cameras and recorders.";
fDesc[11] = "Tool, DVD Burning Tool and MP3 Burning Tool), Burning Kit Premium offers a Data Recovery Tool, Disc Backup Tool, Multi Burning Tool and an Information Tool.";
fDesc[12] = ", Audio Burning Tool, DVD Burning Tool and MP3 Burning Tool. Each of the four programs is able to erase rewritable discs. The Basic version of this kit doesn´t have the features included in the Premium version.";
fDesc[13] = "purposes. The complete set of tools allows you to recover your lost data, reset Windows passwords, make computer system backups, securely erase data, control disk condition, manage partitions and a lot more.";
fDesc[14] = "\"connected world";
fDesc[15] = "purposes. The complete set of tools allows you to recover your lost data, reset Windows passwords, make computer system backups, securely erase data, control disk condition, manage partitions and a lot more.";
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 = '...';
}
}