var fDesc=new Array();
fDesc[1] = "other applications of this kind. With this tool you can write images on a disc, mount on a virtual drive, create an image from a disc or convert it to different formats, create bootable CDs/DVDs, etc.";
fDesc[2] = "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[3] = "the whole system with the OS, apps and settings. In case of a crash you can restore it all in no time!";
fDesc[4] = "the CD in the drive. It works just as well with a network file server. Running programs from your CDSpace virtual drive is about 200 faster than doing it from the CD.";
fDesc[5] = "such handy abilities as generation of self-extracting images and automation of image processing operations.";
fDesc[6] = "disk image or partition image file, you can use that image file to restore the entire disk or partition.";
fDesc[7] = "system recovery.";
fDesc[8] = "disks for errors. Disc Checker will even tell you what files are located on sectors with errors, so you can delete or maybe save them. Furthermore, the application has the ability to create disc images in an array of formats.";
fDesc[9] = "user files. A disk image may be stored on a USB drive, network storage, burned directly to CD/DVD/BR discs, etc...";
fDesc[10] = "you through the process. You can detect and recover all your deleted image files by following three simple steps: exploring the drive, selecting the files you want to restore, and saving the recovered files.";
fDesc[11] = "hard drive, external drives and their partitions. It will help you to restore your system work in case of malfunction and prevent your data loss.";
fDesc[12] = "collection of different wallpapers grouped by theme. They will not occupy much space on your hard disk because they are all available for downloading.";
fDesc[13] = "tools developed by Ether Software. Easy MPEG to DVD Burner is available in two different version viz, trial version and full paid version. Easy MPEG to DVD Burner is very easy to install tool which does not need any expertise in installing to your computer.";
fDesc[15] = "centers. Drive Image Pro allows you to create a compressed hard-disk image file, then use that image file to quickly and easily deploy Windows workstation...";
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 = '...';
}
}