var fDesc=new Array();
fDesc[1] = "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[2] = "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[3] = "any sounds from your sound card and save the recording directly into MP3, WMA or WAV files.";
fDesc[4] = "(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[5] = "and save them into an AVI file. When using this program, you will be able to record your cursor's movements and narrate the actions you are taking by using a microphone.";
fDesc[6] = "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[7] = "microphone, internet streaming audio, music played by Winamp, Windows Media Player, Quick Time, Real Player, Flash, Games, etc.";
fDesc[8] = "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[9] = "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[10] = "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[11] = "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[12] = "a regular keyboard (writing keyboard) with which you will be able to play up to 128 MIDI instruments. You don’t even need a sound card since the software can use the internal speaker of the computer.";
fDesc[13] = "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[14] = "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.";
fDesc[15] = "record any sound by pressing a button of your keyboard. While minimized, its icon is visible in your system tray and you can start recording by clicking on the system tray icon which saves lots of time for you.";
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 = '...';
}
}