var fDesc=new Array();
fDesc[1] = "enjoy high-quality multichannel sound, high-definition video quality and convert both live and prerecorded audio, video, and computer screen images to Windows Media Format for live and on-demand delivery.";
fDesc[2] = ", 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[3] = ", Drive Images, Zip/Jaz Drives, Compact Flash, Smart Media, Secure Digital, and USB Flash Cards.";
fDesc[4] = ", Drive Images, Zip/Jaz Drives, Compact Flash, Smart Media, Secure Digital, and USB Flash Cards.";
fDesc[5] = "user-friendly. It has multiple options for the configuration of its appearance, administration of screens and navigation, including shortcuts to our desktop, documents and other folders.";
fDesc[6] = "such handy abilities as generation of self-extracting images and automation of image processing operations.";
fDesc[7] = "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[8] = "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[9] = ", 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[10] = "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[11] = "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[12] = "and photos from your USB supported removable media. This incredible application retrieves picture files from digital storage media even after the loss of root directory, MBR (Master Boot Record or Partition Table sector), DBR (DOS Boot Record or Boot sector), MFT or FAT.";
fDesc[13] = "parameters, such as drive order and block size, RAID Reconstructor will analyze your drives and determine the correct values.";
fDesc[15] = "(from a logical drive) or any sector from a disk too.";
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 = '...';
}
}