var fDesc=new Array();
fDesc[1] = "files you bought, by removing the DRM protection, and converting them in compatible audio or video files. This way, you will be able to use them in any MP3, mobile phone, desktop DVD player or other compatible players";
fDesc[2] = "media files to MP3 files, these media files may include WAV, OGG, WMA, WMV, ASF, ASX, MPEG-1, MPEG-2, MPEG-4, MP4, M4A, AAC, MOV.";
fDesc[3] = "and other online stores. It supports many formats including 3g2, 3gp,aac, ac3, ape, avi, asf, flv, m2ts,m4a, m4b, m4p,m4v, mov, mp3,mp4, mpg, vob, ogg, tp, trp,ts, wav, wma and wmv.";
fDesc[4] = ", etc. and extract audio from WMV, M4A, M4V, M4B, AC3, WAV, WMA. It also supports batch conversion, customized DRM removing, and lets you adjust bit rate, sample rate, sound channel, etc.";
fDesc[5] = "iPod. It performs complete scan of crashed iPod and recover such as .bmp, .jpg, .jpeg, .wma, .wav, mp3.";
fDesc[7] = "over 35 (and increasing) audio formats.";
fDesc[8] = "Dumpster uses a CD-RW and iTunes to convert your DRM music files to standard format files (MP3, AAC, Apple Lossless, AIFF, WAV).";
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 = '...';
}
}