var fDesc=new Array();
fDesc[1] = "video files that you can then burn into a single-layer recordable DVD disc. You can shrink the whole DVD or just the main film in it, and customize the output files to fit either a 2.5 Gb or a 4.7 Gb disc. This efficient software uses the open source ShrinkTO5 DLL for high-end results.";
fDesc[2] = "Single-Layer Mode) or 8.5 GB(DVD9 in the Double-Layer Mode) and supports all dvd writer and media. Amazon DVD Shrinker will handle all DVD contents like Menus, Audio tracks, language, subtitles and etc.Amazon DVD Shrinker uses an internal decryptlayer, and it can copy and shrink the protected commercial Video DVD for private use. Amazon DVD Shrinker also includes a built in Video DVD burner, so you can really make any copy of discs for your favorite DVD Movies.";
fDesc[3] = "produces good quality movies in AVI ,MPEG1/2 format that take only 1/10 of original size and extract Audio from video DVDs.";
fDesc[4] = ", Audio, Subtitles and Languages. Also It will peer off CSS from commercial DVD automatically so that you can make your own DVD copies no matter";
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 = '...';
}
}