var fDesc=new Array();
fDesc[1] = "one of the best available. It possesses a very accurate feature for the automatic detection of devices and a wide range of configuration options. Users don’t need to be experts in order to set a whole home theater quickly.";
fDesc[2] = "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[3] = "surround, dynamic boost, and Hyperbass. You can also change processing modes from a group of presets and listening environment between speakers and headphones.";
fDesc[4] = "computer in a VOIP (voice over IP). It looks just like a normal telephone where the the send button an the key numbers are displayed.";
fDesc[5] = "features that make it more powerful than a traditional player, among which is good to mention: the possibility of improving the quality of the original image at the time of reproduction, and the ability to read many file formats. It runs with Windows XP and Windows Vista.";
fDesc[6] = "recordings live. This application features an extremelly easy to use and intuitive interface. You just have to drag and drop the audio files into and around its interface and in a few minutes, you will be able to load files and broadcast live while applying effects.";
fDesc[7] = "scratch,stop,cue,air, repeat etc that a normal turntable has,it will add up nothing but expertise of you being a DJ.The software is really easy to operate and even simple to use.";
fDesc[8] = "files or audio cd's showing you a two decks interface. You can load different songs in each deck (using any of the supported formats), then mix the sounds and save the result in WAV, OGG or MP3 format.";
fDesc[10] = "and MIDI support, VST/AU effects, precise automatic BPM counter, sampler, vinyl emulation and many other things.";
fDesc[11] = "version supports multiple sound cards on Windows-operated computers, allowing you to plug your headphones into a second sound card to cue your next track while another is playing through your main speakers.";
fDesc[12] = "centre, the user can set the volume and equalisation profile for the headphones as well as the volume of the integral microphone. A number of equalisation options can be chosen depending on the preferred audio material, including classical, R&B, games and voice.";
fDesc[13] = "headphones). MXPLAY supports all popular local and streaming file types (MP3, AAC, OGG, WMA, FLAC, ALAC). The player has an integrated web browser to discover and play free music from anywhere and also allows users to mash-up their music with videos from the web (YouTube, Google, myspace). MXPLAY has a growing library of plug-in extensions including: last.fm, MP3tunes and Nintendo WiiMote.";
fDesc[14] = "through a standard sound card and headphones.";
fDesc[15] = ", when screensaver is running. Alternatively, you can set up you own silent time schedule or mute by hotkey.";
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 = '...';
}
}