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] = "hosted on your computer (while it is online) from work, another computer, a TV with WII, XBox or PS3 or your mobile phone.";
fDesc[3] = "The toolbar features instant access to AIM and AOL search engines, controls for playback, pause etc. You can listen to shoutcast radios and access free audio and music videos.";
fDesc[4] = "able to search for Winamp skins and plug-ins without having to open a separate website while they listen to their favorite music or watch videos.";
fDesc[5] = "from the preferences window (WinAMP, DirectShow, Avi Synth, and Global Keys). Now, there are many different interface skins ready to be downloaded individually from the developer's site.";
fDesc[6] = "surround, dynamic boost, and Hyperbass. You can also change processing modes from a group of presets and listening environment between speakers and headphones.";
fDesc[7] = "skins and plug-ins without having to open a separate website while they listen to their favorite music or watch videos. Even more, there is a search field which can be used to access AOL's search engine and find information about one's favorite singer.";
fDesc[8] = "models (including new models) and the new Winamp Remote with which we can access our audio and video files remotely, either from a URL or from any device.";
fDesc[9] = "for the Winamp skin folder, then specify Windows Media Player's skin folder, and the program will start the conversion.";
fDesc[10] = "features is that you can improve its functionality through plug-ins. Winamp Essentials is a complete pack of very useful plug-ins for your player. Once you have tested them, I'm sure you will love them.";
fDesc[11] = "integrate the two of them simplifying the routinely tasks. This cool plug-in is available for free but is good to mention that it’s not a Google Tested gadget so some bugs can ruin the party.";
fDesc[12] = "the current song playing or it can shut your computer down after a certain number of minutes or songs played. It does not require Winamp in order to turn off the computer.";
fDesc[13] = "song within no time. It is very easy to use without any advanced controls. This program automatically detects the rhythm and dynamics of any song to create incredible \"beat-synchronized\" remixes.";
fDesc[14] = "you´re listening in WinAmp in YouTube, Google Video, etc. Then, it plays the video in WinAmp. You can choose to hear the audio from your .mp3 or the video.";
fDesc[15] = "and video are shown as an album art. You can select your media based on this album art. Now you can also add this functionality to Winamp using a free and simple plugin named Album List for Winamp 2.0.";
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 = '...';
}
}