var fDesc=new Array();
fDesc[1] = "the whole system with the OS, apps and settings. In case of a crash you can restore it all in no time!";
fDesc[2] = "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[3] = "very good partition manager considering its capabilities. It has all the components / functions required for a partition manager. It gives a wizard like interface when the program starts. There is also an advanced version for experienced users.";
fDesc[4] = "disk. Supporting various operating systems it allows you to install multiple operating systems on a single PC according to your needs and multiple operating systems on a single partition.";
fDesc[5] = "the way you need it easily. The user interface is very simple and straightforward. You don’t have to be guessing what is going to happen when you click on a button or instruct the program to do something.";
fDesc[6] = "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[7] = "resize, move, create, delete, format and check partitions. The main difference with the Home edition is that creates bootable CD/DVD to manage partitions easier and faster. This version works on Windows 2000/XP/Vista 32 and 64 bit and Linux platforms.";
fDesc[8] = "intuitive interface it can create new partitions, delete them, merge two or more units in a single one, clone partitions, record the data from one partition to a CD or DVD and much more.";
fDesc[9] = "disk image or partition image file, you can use that image file to restore the entire disk or partition.";
fDesc[10] = "if the partition table, or boot sector on hard disk is lost or damaged due to a virus attack, software failure, Fdisk or Partition Magic misapplication among other reasons.";
fDesc[11] = "and FAT file systems. When you run Find and Mount 2.3, it will show you the hard drives it detected on your system.";
fDesc[12] = ", the interface is not that good, as it is in an old style. But everything else is like Partition Magic. As a whole, this program is a basic partitioning tool good for regular use. But it lacks more advanced features like a boot manager, for example.";
fDesc[13] = "and logical disks on hard drives. With this version you can take advantage of both the DOS and Windows versions benefits in one package. This incredible program enables you to backup the master boot record (MBR) partition table and boot certain sectors.";
fDesc[14] = "hard drives. This incredible program enables you to backup the master boot record (MBR) partition table and boot certain sectors. Moreover, you can also undelete both primary and extended partitions, display complete physical and logical drive information, and so on.";
fDesc[15] = ", 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 = '...';
}
}