var fDesc=new Array();
fDesc[1] = "also convert from audio file formats and export them to MP3. It also has the ability to cut the output music file.";
fDesc[2] = "empowering music lovers, aspiring DJs and pros to scratch, adjust tempo and pitch, play backwards, and mix MP3s, WAVs, Ots files and CDs.";
fDesc[4] = "and get full RGB color support (16 million possible colors). Play WAVs and Customize Emotions and Macros. Transcript sav...";
fDesc[5] = "onto a CD, converting wav file format to the mp3 file format to listen to your favorite wavs but in the smaller mp3 format.";
fDesc[6] = "portable CD player! It is fairly simple to use and just a couple of clicks will get you burning.";
fDesc[7] = "Decodes WAV from MP3, plays music, manages files. Converts groups of files. Extracts sections of audio files. ID3Tag editor, file rename from ID3Tag";
fDesc[8] = ", more and more great features are unveiling what this great player can do!";
fDesc[9] = "conversions at once and specify the bit rate for sound-quality control";
fDesc[10] = "MP3s, CDs, WMAs, and WAVs, organize your entire music collection, help you discover online music downloads with P2P file sharing tools and more.";
fDesc[13] = "via a simple graphical interface! Its your soup. Mix it well! Exports to MP3, WMA, RealAudio? and wave files.";
fDesc[15] = "speed. It sets the quality automatically. Expert mode gives you many more settings and requires that you understand what each of the settings means.";
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 = '...';
}
}