var fDesc=new Array();
fDesc[1] = "few clicks, and then enjoy it with versatile streaming features. With Nero you are sure that your data is safe after an event of system crash or a damaged disc.";
fDesc[2] = "totally intuitive interface similar to Windows Explorer (with check boxes next to files and folders) that will allow you to select the files and folders you want to back up, the destination and filename, and any optional settings.";
fDesc[3] = "formats (Direct CD, InCD, DLA, and Instant-Write) and is capable of performing surface scans, accessing data that Windows simply cannot read.";
fDesc[4] = "backup application on the market. Not that I use a lot of them, but I have used quite a few, and this is the best so far. Drive Backup 9 allows you to backup your computer drives and create image files that you can later on recover your system from.";
fDesc[5] = "incredible application completely scans disks and saves as much information as possible. What is more, the program uses a lot of different algorithms, which considerably increases the amount and quality of the recovered data.";
fDesc[6] = "archive file or create an exact image of partitions on your hard disk for easy hard disk upgrade or complete/partial system recovery.";
fDesc[7] = "discs. 2. Recovers CD and DVD data created by digital cameras, camcorders, DVD recorders. 3. Burns discs. 4. More...";
fDesc[8] = "helps in rescuing damaged files and copies the correct data to the hard disk and also scans the disk sector fast. The application is specially designed to support many types of files such as documents, applications, images and media data.";
fDesc[9] = "any storage device. The program features a very simple and intuitive user interface, specially designed for beginners with a step-by-step wizard that guides you throughout the different steps of the process.";
fDesc[10] = "damaged, scratched or defective CD and DVD discs. This incredible software supports data recovery from all CD and DVD disc types (CD-ROM, CD-R, CD-RW, DVD-ROM, DVD-R, and DVD-RW), and from quick formatted RW discs.";
fDesc[11] = "defective CDs, DVDs, floppy disks. It supports recovering all types of files like documents, images, videos, etc.";
fDesc[12] = "discs when regular software can't read them fully or partially. This tool extracts the intact portion of your data and tries to recover problem areas. You can either choose to recover selected files, or save an image of the whole disc. The program works under Windows 2000/XP/2003/Vista and supports all types of CD and DVD media with ISO or UDF file systems, including discs burned by video cameras and recorders.";
fDesc[14] = "any CD, DVD, HD or Blu Ray disc. Then, you can save the recovered data onto a new disc. UltraCopy has lots of different tools to perform single or multiple file copying, recover data from any media.";
fDesc[15] = "DVD-RAM).";
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 = '...';
}
}