var fDesc=new Array();
fDesc[1] = "DVD from home videos. You can playback digital media files, and make an archive song collection in MP3. You can also backup personal data and legally record DVDs.";
fDesc[2] = "This version also added full support for Blu-ray AACS MKB15.";
fDesc[4] = "compress and combine video files to fit the quality standard and the type of disc selected, managing the whole process quickly and with the highest quality. You can now burn all your video clips to DVDs, CDs or Blu-ray discs, all with the same tool.";
fDesc[5] = "R/RW disc";
fDesc[7] = ", DivX to DVD and burn DVD movie played on portable or home DVD player.";
fDesc[8] = "software converts high definition MVK movies to vob files(compatible with Play Station 3), which can be played in Play Station 3 consloes and many DVD players.";
fDesc[9] = "if your DVD movie is a big one (DVD-9, DVD-10). But fortunately, there are programs like Apollo DVD Copy that will greatly simplify this process.";
fDesc[10] = "based on protected sectors. Combining this tool with DVD Decrypter and DVD Shrink (all of them free!) you can easily get your copy without worries.";
fDesc[11] = "mpeg to cd disc, support all rewritalbe CD and DVD disc.";
fDesc[12] = "Supports NTSC and PAL TV systems and Widescreen and Standard TV and many DVD-R/RW and DVD+R/RW burners.";
fDesc[13] = "engine integrated you can easily Merge up to 4 hours of multiple movies or episodic files to standard MPEG2 Video and burn it onto DVD Disc.";
fDesc[15] = "sophisticated movie maker but also for a beginner. Everyone can find here everything they need to create their own homevideo, slide show, TV Show etc. with minimal effort and professional results of high quality. I’m sure this program won't leave anyone fazed.";
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 = '...';
}
}