var fDesc=new Array();
fDesc[1] = "more from their player. Its forward backward button option, media library, online music search option, minimode are very useful additions. All this packed in a simple interface and makes it a great media player to work with.";
fDesc[2] = "features. SMS service helps you to send messages to people's mobile phones. I like Yahoo Messenger mainly because of its stealth settings. Games can be played on Messenger. All of these features make Yahoo Messenger the best Messenger software.";
fDesc[3] = "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[4] = "files in over 400 file formats (GIF, BMP, PNG, JPG, JPEG, TIFF, PCX, ICO, IMG, PDF, PIC, PSD, RAW, RGB, TGA, and many more).";
fDesc[5] = "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[6] = "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[7] = "plug-ins: Vinyl Restoration™, Noise Reduction, Clipped Peak Restoration™, and Click and Crackle Removal™ plug-ins. Save valuable time and money by applying the Noise Reduction processing power to salvage vintage vinyl recordings, and rescue problem tracks.";
fDesc[8] = "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[9] = "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[10] = "processing tools, and its Waves Mercury Bundle is a comprehensive collection that offers the incredible amount of over 90 processors and more than 250 plug-ins divided into different components.";
fDesc[11] = "in spite of its simplicity. The slogan that describes it is very accurate: “Sound quality is not skinnable”. It natively supports MP3 and WAV, and also a wide range of other formats through different plug-ins, including ALAC, FLAC, CD Reader, WMA, or OGG.";
fDesc[12] = "sessions. The Bomb Factory BF76 (formerly, Bomb Factory 1176) offers you the world-class compressor/limiter capabilities of the classic 1176 Peak Limiter, while the BF Essentials provide a set of time-saving, trouble-solving, mixing studio utilities";
fDesc[13] = "design. The program has many outstanding features that make it top in its class. This is due to the plug-ins that the program provides for audio editing or music production software. With the given tools you can track, mix, master and design sound.";
fDesc[14] = "quite a painful sight, isn’t it, to watch Acrobat lug and puff its way up when all it has to pick up is a lightweight file. The reason for that is Acrobat has a lot of excess baggage of its own. When you tell it to open, it loads about 40 plug-ins.";
fDesc[15] = "with only those applications that support VST plug-ins. Similarly the VST plug-ins can be used in applications that support DirectX plug-ins. It can be used within applications that support DirectX and VST.";
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 = '...';
}
}