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] = "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[3] = ", ME, XP, 2000,2002, Linux, MacOS and others. The program allows you to backup and restore you Vista bootloader and offers many features to rescue your system.";
fDesc[4] = "surface, all files and partitions are eliminated, and it defines or re-creates the tracks and sectors on the disk. Then, it is possible to fix or repair a damaged disk.";
fDesc[5] = ", or filesystem. You can do things that other programs/methods couldn't. If you cannot boot your computer to Windows, you can still create a bootable regenerating diskette or a bootable regenerating CD.";
fDesc[6] = "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[7] = "this same task, but most of them are expensive. There are complicated tools too, but XXCLone takes cloning to a whole different level by making it a pretty straightforward process. All you have to do is select the source drive, the target drive and choose one of the cloning options.";
fDesc[8] = "is a set of tools that cleans up and optimizes the files, Defragments them, Backups the files, manages Partition, and Repairs your Hard Disk Drives. You can schedule one or all of these tasks...";
fDesc[9] = "Windows system utilities. Such utilities include individual control panel applets, and hidden applications within Windows. XP SysPad allows recovery of lost Windows/MS office product keys. With the XP SysPad user(s) are allowed to access hundreds of Windows operating system utilities.";
fDesc[10] = "NTFS partition of Windows Operating System.";
fDesc[11] = "It supports all versions of FAT and NTFS and regenerates documents even from lost, deleted partitions and reformatted disks.";
fDesc[13] = "flash memory, CD or DVD. Backup and restore information.";
fDesc[14] = "disk image. It can backup any folder to any destination (network drive, USB external disk..) It comes with its own DVD burner diver..";
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 = '...';
}
}