var fDesc=new Array();
fDesc[1] = "enable you to playback and encode most of the formats currently available. During the installation, informative menus will warn you about options that may cause troubles, like some old codecs. The installation will ask you what to do.";
fDesc[2] = "problems. A common issue with video is the lack of the correct codecs in your system, causing your player to fail when trying to reproduce certain files, this pack helps you by providing some of the most common codecs needed.";
fDesc[3] = "transcode them, or put video back on DVD for different purposes, like for instance to get backups of your favorite DVD movies. Includes DVD Decrypter, VOBrator, VOBSplitter, DVD Shrink, and more.";
fDesc[5] = "includes VirtualDub, an open source video capture and processing application designed to process linear video streams, including filtering and recompression, also includes AVI Mux, OGGMux, and DVD2AVI.";
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 = '...';
}
}