var fDesc=new Array();
fDesc[1] = "video recorded with a camcorder, upload a video to a portable device, or edit a project, MyDVD will allow you to do it, providing you with professional tools to create the perfect DVD for each ocassion.";
fDesc[2] = "You can burn your video directly to a DVD without copying files to the PC hard drive, saving both valuable time and space. And at the same time, the burning meets the standard requirements, so, then the DVD can be played on any home DVD player.";
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] = "Ripper can then copy DVD to VCD or SVCD, an ideal method to make backup DVD copy.";
fDesc[5] = "computer hard drive or to blank discs. The program works with a very fast speed and it does it with a high level of quality. This efficient application allows you to copy an entire DVD or to copy just the episodes you select from your DVDs.";
fDesc[6] = "simple data cd and dvd it also support creation and burning of .ISO files, duplication of cd and dvd, creation of audio cds.";
fDesc[7] = "permanent data backup or sent to others as gifts.";
fDesc[9] = "formats, such as VCD, SVCD, DivX, AVI, MPEG4 and WMV, etc.";
fDesc[10] = "CDs, CDRs, CDRWs, HDs, Floppies, Zip Drives, DVDs and Audio CDs for offline browsing.";
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 = '...';
}
}