var fDesc=new Array();
fDesc[1] = "source codecs like Ogg vorbis. With the built-in utilities like library manager, music ripping and burning to CDs and its great playback quality, it is indeed a great music player to have.";
fDesc[2] = "songs and albums with excellent audio quality, and all for free, as it is funded on advertising. In Spotify it is possible to listen to all sorts of music: from a rare song one might not expect to find, to the latest albums by popular bands and artists.";
fDesc[3] = "collections of all the imaginable music styles. Last.Fm opens a whole universe of new music, only by creating an account and downloading its freeware software.";
fDesc[4] = "increasingly popular in the MP3 download market. Amazon is perhaps the most popular online retailer of the world, and now they are looking into getting a share of users from services like iTunes.";
fDesc[5] = "sleek for a freeware. The media library is the main window of the program. Searching for files and browsing the library is very fast, unlike in Windows Media Player. The items found will be automatically grouped according to the genre, artist, and album.";
fDesc[6] = "music is playing and it will tell you what the song is. It happened to me many a time that I just couldn't figure out the name of a song and I needed to ask around. Tunatic does a good job of identifying the song for me.";
fDesc[7] = "well known programs of instant messaging and VoIP. You can use background sounds street voices, nature, forest and waterfalls. You can perform song remixes, change the song voices, add effects and save the new song in standard formats like MP3 and WMA.";
fDesc[8] = "smart layout, plus a wide array of functions, this application has a powerful audio engine that provides an excellent listening experience. It has minimal system requirements, and works perfectly in all Windows OS, and the best of all, it is totally free.";
fDesc[9] = "player. It is compatible with Winamp, Windows Media Player, iTunes, and other popular audio players. As soon as you open your music player, the program will look for the lyrics of your current song using powerful search engines like Google, Altavista or Alltheweb.";
fDesc[10] = "You can start selecting the genre you want to listen to, then the artist, the album and the song. Once you get to the song, Music Oasis will start playing it, showing you information about the Artis, Album and Song in the right panel.";
fDesc[11] = "Scritures and powerpoint presentations with the help of a video projector. It is a valuable tool that allows the user to save time while preparing a more appealing worship session.";
fDesc[12] = "voice pitch. You control the program using the keyboard (cursor movement keys, Enter key, F2...). No mouse control here.";
fDesc[13] = "audio files from different sources, eliminate the lead vocalist’s performance from most stereophonic recording and synchronize the song lyrics with the `devocalized’ soundtrack.";
fDesc[14] = "Lite counts the beats per minute of every music file and adjusts to mix the music, the music mix is automatic and there are certain values that can be configured to make the mix without distortions and with a great quality in the mix.";
fDesc[15] = "vocals from almost any song, saving then tracks ready to use in karaoke. Karaoke Anything! supports .mp3 files and regular CD Audio.";
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 = '...';
}
}