var fDesc=new Array();
fDesc[1] = ", 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[2] = "effects for the manipulation of audio. This application is ideal to handle audio recording, audio editing, effects processing and media encoding. Users can combine Sound Forge with any Windows-compatible sound card to create, record, and edit audio files.";
fDesc[3] = "three separate entries into the program's folder. These are the entries for each of the three modules included in the program: Music Converter, Batch Converter and CD Ripper. Every module has its own interface";
fDesc[4] = "suite is for both, unexperienced and advanced users. It has an intuitive and easy-to-use interface. You can use it to: create sound files for music CDs, improve your music files thanks to advanced audio filters, create amazing remixes, analyze advanced data like frequency or bitrate, etc.";
fDesc[5] = "as many audio files as you wish in MP3, WAV or WMA, arrange them in any order you like, add fade-ins and fade-outs, change their volume and pitch… and make your own original mixes with just a few clicks!";
fDesc[6] = "through your computer and save it in any of the most popular formats – MP3, AAC, WAV, M4A, ADPCM or WMA. You can decide on the sample rate, the bit rate, the number of channels used, or the volume settings, and apply correction effects for better results.";
fDesc[7] = "and conversion tool. If you are a music lover then this software is waiting for you. Creative Media Toolbox offers everything you need to \"play\" with your music in just one package.";
fDesc[8] = "record any external sound by using a microphone or other device and save the result as a WMA, OGG, Mp3, APE, FLAC or WAV file. The program enables you to record any sound directly from a sound card.";
fDesc[9] = "matter if you are listening to your favorite on-line radio, your audio CDs, or if you want to record your voice by using your microphone. With this versatile program you can do it easily.";
fDesc[10] = "both internal and external sources into MP3, OGG, WMA, WAV, or APE format sound files directly. i-Sound WMA MP3 Recorder can record sounds from MIDI, Internet broadcasts, streaming media or your microphone, in 8 channels.";
fDesc[11] = "such as microphone, DVD audio, audio played on the online radio, songs played on media players and voice chat. Audio Record Expert provides you with a silence detector that splits your recording automatically. It also allows you to schedule recording on specific or recurring events.";
fDesc[12] = "recorded. Easily remove sound distortions and imperfections with drag and drop editing.";
fDesc[15] = "via a simple graphical interface! Its your soup. Mix it well! Exports to MP3, WMA, RealAudio? and wave files.";
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 = '...';
}
}