var fDesc=new Array();
fDesc[1] = "professional audio production. Use Adobe Audition to: - Create your own music - Record and mix a project - Produce a radio spot - Clean up audio for a movie - Compile and edit a soundtrack Whatever you do with audio, Adobe Audition software helps you sound your best.";
fDesc[2] = "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[3] = "what you see when you start any other audio recorder. A graphic representation of a tape recorder, with record, play, stop, and pause controls.";
fDesc[4] = "any sounds from your sound card and save the recording directly into MP3, WMA or WAV files.";
fDesc[5] = "(batch renaming is supported), create playlists and rip CDs. The program has an attractive user interface and is easy to use. And the main advantage of the program is that it is completely free.";
fDesc[6] = "diverse feature set is perfect for audio and broadcast production, multimedia and Internet content development, remixing, and sound design.";
fDesc[7] = "line-in audio , streaming audio from the Internet, or music played by Winamp, Windows Media Player, Quick Time, Real Player, Flash, games, etc, without losing any quality. It supports three kinds of sound output formats, WAV, MP3 and WMA.";
fDesc[8] = "microphone, internet streaming audio, music played by Winamp, Windows Media Player, Quick Time, Real Player, Flash, Games, etc.";
fDesc[9] = "as a WAV converter, which takes various media files as input and saves them in WAV format. It can detect any sound playing from media player on your system and records it immediately.";
fDesc[10] = "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[11] = "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[12] = "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[13] = "going to be able to record sound from many sound devices, including microphone, CDs, cassettes and more. Thanks to this software, you will be able to record your own voice, instruments, conversations, music from radios and more.";
fDesc[14] = "MP3 audio formats. The user interface is similar to the Windows traditional sound recorder. You can use a microphone or any audio input to record a sound.";
fDesc[15] = "You have the option to record audio from a sound card, cassette tape, video tape, microphones, line in etc. You can record any type of audio according to your taste and preference.";
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 = '...';
}
}