var fDesc=new Array();
fDesc[1] = "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[2] = "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[3] = "EnCase® forensic images, SMART® forensic images, RAW image files, and ISO images. Mount Image Pro provides read-only access to the contents of an image file.";
fDesc[4] = "Read and Write LVM2 (linear stripes only). Read and Write EXT2/EXT3 (e2fsprogs/libext2fs). Read ReiserFS (rfstools). Read and Write Win32 filesystems (Win32 API). Read FAT12/FAT16/FAT32 without using Win32. Read and Write software RAID0, RAID1 and RAID5.";
fDesc[5] = "the form of a self-bootable CD, and features impressive speed of up to 2GB per minute and offers support to IDE/SATA as hardware.";
fDesc[6] = "drives other than floppy disks you need to have administrator's privileges. The program can create an image of all physical disk drives like floppy disks, USB flash drives, MP3 players, digital cameras or a logical disk drive, that is any partition on a hard disk.";
fDesc[8] = ", unformat, partition, RAID and image recovery. Windows 2000/XP/Vista basic and dynamic disks are support.";
fDesc[9] = "UFS Explorer Standard Recovery is fast and comprehensive data recovery and undelete program for FAT/NTFS/HFS/HFS+/UFS/ UFS2/XFS/ReiserFS/Ext2 /Ext3 file systems.";
fDesc[10] = "FAT. Supports hard disks, USB devices, disk images, virtual disks (VMWare, VirtualPC, MacOS DMG, RAW).";
fDesc[11] = "by step. TurboScan? gives a real control over the fastest Linux data recovery ever known.";
fDesc[12] = "operating systems and digital images stored on memory cards, hardware RAID, etc. Supports FAT, FAT32, NTFS and Ext2 file systems.";
fDesc[13] = "OS: HFS+/UFS/UFS2/XFS/Reis erFS/Ext2/Ext3/UDF/ISO 9660/NWFS/FAT/NTFS with system locked files access.";
fDesc[14] = "the Linux operating system. Software quickly recovers linux files, data and folders which gets corrupted.";
fDesc[15] = ", which automatically recognizes lost partitions,volumes, files and folders.";
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 = '...';
}
}