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] = "Diagnostics module - Benchmarks - Tweaking features - Web links - Favorite pages - Built-in hardware database - Full Windows XP compatibility - Full Windows Server 2003 compatibility - Fully localized user interface.";
fDesc[3] = "all the functionalities of a typical mixer such as volume fader, mute, cross fader assignment, and additionally contains an MP3/WAV/Karaoke player, possessing all the expected controls including a Pitch/Tempo control.";
fDesc[4] = "Music Studio 3 offers all the basic tools that you may need to manage your music like, a batch converter that can convert any mp3, ogg, wav, wma and flac files using custom bit-rates and channels.";
fDesc[5] = "Blackjack. They differ mainly in the amounts of the bets. Barroom´s bets go from $1 minimum to $200 maximum, while Vegas´ bets go between $100 minimum to $1000 maximum.";
fDesc[6] = "detailed information of the driver versions that can be automatically downloaded, and also it gives you the ability to make backup copies of each of the drivers.";
fDesc[7] = "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[8] = "turntables, that can be played simultaneously, with different tracks. These tracks will be MP3 recorded in any drive. The two turntables will have individual controls, and you will be able to mix the sounds from both in a central mixer.";
fDesc[9] = "can record files being played by other applications, multichannel sound cards, external USB audio cards and microphones, and supports several cards in the same system.";
fDesc[10] = "be used as a conversion tool. It will help you to convert audio files from one format into another. Many audio formats are supported by this software.";
fDesc[11] = "five times smaller than the Windows version. Its interface is smart and user-friendly, allowing you to control different levels.";
fDesc[12] = "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[14] = ", microphone, application programs and some inputs by sound cards with ease. The user can customize the audio file output settings by changing its audio bitrates, frequency and the number of channels for the file.";
fDesc[15] = "any other soundscape imaginable. It can run in the background while you work. Integrates with Kaleidoscope 95, Syntrilliums screen saver with audio response. Includes Setup, Help, and Uninstall.";
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 = '...';
}
}