var fDesc=new Array();
fDesc[1] = "folders to existing images, and also compress, add encryption, mount images etc. Among the features of the new version we get: compatibility with Windows Vista, support for multiple languages and command-line parameters support.";
fDesc[2] = "interface. The free trial version allows the backup and restore features, but requires a license for the update feature.";
fDesc[3] = "interfaces to ensure that data remains safe when the computer is unattended or for public use, such as those in an open environment. It also prevents data from being copied to external storage media, such as an optical disk, flash drive or floppy disk.";
fDesc[4] = "such handy abilities as generation of self-extracting images and automation of image processing operations.";
fDesc[5] = ", CD-ROM/CD-R/CD-RW and any other local disks.";
fDesc[6] = "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[7] = "downloads from a remote PC if the connection was broken during the copy process (especially useful for Wi-Fi).";
fDesc[8] = "bootable floppy disk to bootable USB disk, you can convert bootable CDROM to USB Flash disk too. Not only this you can also use the Flash Boot to create your windows NT/2000/XP password recovery disk and boot loader.";
fDesc[9] = "photos lost because of file system corruption of the storage media, unintentional or intentional formatting, turning the camera off unexpectedly. accidental deletion of files. corruption or damage to the media or other situations.";
fDesc[10] = "cameras, USB drives,ZIP disks, etc. that have been lost due to accidental deletion or format, system crash, virus damage, power failure and much more.";
fDesc[11] = "securely wipes all drive data before selling, donating or recycling your PC. It restores your drives to like-new after virus or spyward damage. Not only wipes PC drives but also connect to your UPnPNetwork and palyback Media files.";
fDesc[12] = "bootable floppy disk, that can be used to start your system. The program will also create a floppy disk image. You can use that image to generate a bootable USB drive, using BootDisk2BootStick";
fDesc[13] = "floppy disks like double density and high density formats. A standard floppy disk is 3.5” in size which is supported on all Windows operating systems and a non standard floppy disk is 5.25” but this format is supported only on latest version of Windows.";
fDesc[14] = "type of software then any other floppy repairing tool. Unlike other softwares it does not mark the bad areas of floppy as bad sector. Even it does not hide any bad sector in the file system. As its name suggest, it is a floppy bad sector repair tool.";
fDesc[15] = "other peripheral devices.";
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 = '...';
}
}