var fDesc=new Array();
fDesc[1] = "offers easy burning wizards separately for Audio disk, Data disk, Copy disk and Erase disk. CDBurnerXP also offers ISO image burning wizard that can be used to burn an ISO image to disk, without NERO Burning tools.";
fDesc[2] = "do is insert your DVD movie into the drive and select copy. It's that simple. The graphical user interface is really simple and all the options are pretty self explanatory.";
fDesc[3] = "loss of quality within 20-40 minutes, or compress a DVD9 movie to fit on a 4.7 GB DVD. And it can also copy DVD movies to hard drive.";
fDesc[4] = "backup and protect your information. It works with two steps: Build and Burn. It uses step by step wizards that help you through the entire process.";
fDesc[5] = "Backup Schedule backups files and folders your selected beforehand.It will carry out the backup task periodically.";
fDesc[6] = "functionality for DVD MP3, DVD WMA, DVD File and DVD Video. The CD functions include the ability to copy CD files, MP3’s, WMA formats, Super VCD, etc. It also performs as a Video Splitter and Video Join.";
fDesc[7] = "without quality loss, in fact you get exactly the same disk. Just insert the disk you wish to clone into your drive and press a couple of buttons to make it cloned.";
fDesc[8] = "your entire DVD collection in 3 clicks of the mouse. It combines an extremely easy-to-use interface, more features than any other DVD copier.";
fDesc[9] = "image. The source and the target can be selected from: DVD drive, hard disk or ISO image. Also you can erase rewritable DVD and control the DVD drive by opening, closing, and you can lock or unlock the drive.";
fDesc[10] = "menus, bonus tracks etc.";
fDesc[11] = "data-backup CDs/DVDs and so on.It includes importing multi-session CDs/DVDs,erasing RW disc and so on. Clone CD/DVD is available!";
fDesc[12] = "DVDs, High definition DVDs and even Blue ray Disks. Robust DVD Copier makes use of two technologies for device accessing, which makes grabbing any type of content from DVD disks easier and simpler.";
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 = '...';
}
}