var fDesc=new Array();
fDesc[1] = "over the world. You can search for stations by keyword or simply search by music genres included in the toolbar such as Rock, European, Dance, Pop and Hip hop.";
fDesc[2] = ", APE. This easy to use software is very fast. You don’t have to read any manuals or any big help files to use this. All you do is click on one button and your CD will be copied. This software can also convert WAV files to MP3, WAV, WMA, APE, VQF, OGG, AAC, MP4 files.";
fDesc[3] = "experience in audio editing. You can open any audio file of MP3, WMA, WAV, OGG, AIFF, VOX or RAW format and apply special effects and filters like Amplify, Flanger, Chorus, Reverb, Invert, Reverse to it.";
fDesc[5] = "single-instrument polyphonic music. It's a powerful tool to help you to transcribe music, to practice musical instruments and to make MIDI files.";
fDesc[6] = ", paste or delete any part of an audio file using this editor. You can also save a desired part of the audio to a new audio file and use this tool as an audio splitter too.";
fDesc[7] = "your profile so everybody can know what you are listening to and you can also find friends who like the same kind of music. The program supports these players: iTunes, Windows Media Player, and Winamp.";
fDesc[8] = "much more from iTunes to WMP and vice versa. Apart from this, Music Bridge is capable of copying album art from a .JPG folder or from an album art file, export iTunes ratings to XML file.";
fDesc[9] = "Google-powered search tool that lets you find any topic on the Net. On the other hand, it is a Christian music player with a list of preset Christian music stations and a set of music player-style controls. If you enjoy listening to Christian music while web-surfing, this one is for you.";
fDesc[10] = "small, fast, and out of your way in the systray!";
fDesc[11] = "removable media, say, ZIP disks or CD-Rs. The tool has a gorgeous interface and is pretty easy to use and understand.";
fDesc[12] = "MP3s, CDs, WMAs, and WAVs, organize your entire music collection, help you discover online music downloads with P2P file sharing tools and more.";
fDesc[14] = "chords of a song from whatever Windows program you use, click the icon, and up pops the Tray Transpose Tool, with the cli...";
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 = '...';
}
}