var fDesc=new Array();
fDesc[1] = "Real player is a free multimedia player,supports almost every audio and video file formats like,MP3,MPEG,MP4,CD,D VD VIDEOS and the QUICK TIME videos.Real player enables the user to buy and download music on more than 100 portable devices like Apple Ipod or an MP3 player.";
fDesc[2] = "file formats as well as DVDs, VCDs, and other streaming protocols. It includes a large number of common encoding and decoding codecs like 3GP, AVI, FLV, etc.";
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] = ", burn, convert, record and do much more with this program. Play the most popular video formats or convert audio from one format to another. Record analog audio from the computer and add sound effects, such as cross-fader, reverb, and x-bass.";
fDesc[5] = "your favorite music files stored on your PC? Then AIMP is a new music player you should download and test it. AIMP is specially popular because it's a simple application that uses low resources, but it has a powerful equalizer where you will notice better quality improvements of your audio files";
fDesc[6] = "converts the PC into a great stereo system by adjusting several settings to arrange the environment and simulate an audio studio. It enhances the sound quality of MP3, Windows Media, Internet, radio and many other music files.";
fDesc[7] = "GoldWave, a very advanced program that will help you perform from simple to complex audio projects. With this application you will be able to play, edit, mix, restore and apply many audio effects to your files that will let you get professional results.";
fDesc[8] = "architecture. The program also supports Gracenote CDDB for the best music recognition and contains some visual effects which react to the beat of music.";
fDesc[9] = "designed to use and experiment DJ techniques without any DJ equipment. Its modern design and user interface with skin support allows the user to handle it even under the most difficult circumstances. Its wide spectrum of features allows the home user to do all DJ work without any additional hardware.";
fDesc[10] = "transitions that enable anyone to produce cool MP3 mixes. In the program's nice graphic interface, different visualizations show the beats as the music plays.";
fDesc[11] = "more rocking and memorable than ever. The software supports two totally independent decks which have a queue of files or playlists. It provides a professional quality of sound so also a very good beat synchronization display.";
fDesc[12] = "the Acoustica Premium 4 program. For one, it has an organized and visually appealing user interface. Both DirectX and VST plug ins are supported and editing can be done in surround format. There is also the StudioEQ equalizer integrated into the software.";
fDesc[13] = "supports M3U, and LST playlists, and includes a practical editor that will allow you to create and save your own playlists. With its complete equalizer, you can also create your own collection of settings that you can then save in EQ files for later use.";
fDesc[14] = "E-Channel, the SSL G-Master Buss Compressor, the SSL G-Equalizer, and the SSL G-Channel, all based on the original SSL 4000 console series.";
fDesc[15] = "boost or cut at any of 15 bands centered around ISO 2/3 octave frequencies from 20Hz to 20kHz. It includes many equalizer presets designed to enhance different types of music and 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 = '...';
}
}