var fDesc=new Array();
fDesc[1] = "kind of tasks had to be done using DOS applications that required a great deal of know-how. Now, thanks to Partition Magic, users can create, delete, copy, merge, split, and format partitions and discs, and change their file systems.";
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] = ", Drive Images, Zip/Jaz Drives, Compact Flash, Smart Media, Secure Digital, and USB Flash Cards.";
fDesc[4] = "Recycle Bin, the command line window (DOS) or a network share; they can be recovered along with the original folder name and dates even if overwritten by new data.";
fDesc[5] = "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[6] = "easy to use and so you don’t require any technical skill or knowledge to recover your data. By using Seagate file recovery for Windows you can easily recover any file of any format.";
fDesc[7] = "operating system to recover lost, deleted, formatted, virus affected, corrupted data, damaged or deleted partitions structures from your hard disk or storage media.";
fDesc[8] = "lost or deleted after an accidental format, virus crash, partition loss software malfunction, file or directory deletion or even sabotage.";
fDesc[9] = "intentionally deleted or lost photos. Simple and clear step-by-step interface allows you to instantly recover lost or deleted images from your: digital camera, computer, flash card, memory card, mobile phone or any other media or drive.";
fDesc[10] = "that 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] = "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.";
fDesc[12] = "the computer effectively and perform many complex tasks. With the help of this application, the user can navigate by accessing the partition table directly, or through FAT or root directory, boot record or even jumping to a certain sector.";
fDesc[13] = "your lost, missing, inaccessible or deleted data. This incredible software will enable you to recover all your data/files lost due to accidental format, virus problems, software malfunction, file/directory deletion, unexpected shutdown, or even sabotage.";
fDesc[14] = "to use recovery utility and work on all windows platform launched after windows 98. It can be used to recover or undelete the files from NTFS, FAT 12, FAT 16, FAT 32 file systems formatted drives. It not only work on hard disks but it also have full capability...";
fDesc[15] = ", deleted file recovery, re-formatted drive recovery, Formatted partition recovery from IDE / AT, SATA, SCSI and USB Drives";
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 = '...';
}
}