var fDesc=new Array();
fDesc[1] = ", DVD-R/RW, DVD+R and other formats (high definition videos included). The new version of PowerDVD offers many new features; for instance, True-Theater HD (which boosts up low resolution videos to higher resolutions) and True-Theater Motion which allows to increase the frame rate.";
fDesc[2] = "high-quality, highly compressed DivX video, merge and convert multiple videos into a single DivX file with an automatically generated menu.";
fDesc[4] = "levels of visual quality, compression and control. DivX Pro plugs into your video software to produce high-quality movies (at one-tenth the size of a DVD) for viewing on your PC or, with DivX Certified DVD players, right on your TV.";
fDesc[5] = "name suggests, it allows you to convert any AVI file to DVD, VCD, SVCD and MPEG formats. However, this application has been redesigned to better its file support and now manages Mpeg, Mov, RMVB and DivX.";
fDesc[6] = "internet. So, it is the codec they usually rip a DVD into. The main advantages of DIVX is that the video quality is maintained to the maximum while the file sizes are small. It gives one of the best compression available.";
fDesc[10] = "damaged or corrupted Media files. Repair media files that can not be played or dragged.";
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 = '...';
}
}