var fDesc=new Array();
fDesc[1] = "your favorite music files stored on your PC? Then AIMP is a new music player you should download and test it. AIMP is specially popular because it's a simple application that uses low resources, but it has a powerful equalizer where you will notice better quality improvements of your audio files";
fDesc[2] = ", there are many other uses for it, screencasting being the most notable of them. Debut allows you to record your screen as if you were recording a webcam feed.";
fDesc[3] = "VoIP calls and Instant Messaging conversations.";
fDesc[4] = "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[5] = "and WAV files. You can switch from MP3 to WAV (and vice-versa) any time, or perform all your tasks without leaving the MP3 format, cutting full sections and adding fade-in and fade-out effects to your MP3 files without transcoding them, thus minimizing any loss of sound quality.";
fDesc[6] = "resource such as Midi, MP3, WAV, WMA, RM, OGG,VQF, CD, DVD, MPEG, AVI, MOV, GAME, FLASH, Streaming Audio on Internet...";
fDesc[7] = "in a file any sound that goes through your sound card. You will be able to record sounds from programs, an Internet streaming, your microphone, the CD/DVD player or any device you connected to your Line In jack, such as a TV set, a cassette recorder or a Hi-Fi system.";
fDesc[8] = "any sounds from your sound card and save the recording directly into MP3, WMA or WAV files.";
fDesc[9] = "on LP to the music on CD and even DVD. Turn your PC to the sound-recording studio by means of iRecordMax Sound Recorder! Anyway you will get audio files of high quality.";
fDesc[10] = "(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[11] = "vinyl LP’s and others to record it on a CD/DVD. The latest edition has improved sound source selection in Windows Vista, along with other systems having multiple sound cards.";
fDesc[12] = "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[13] = "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[14] = "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[15] = "etc. from your local computer or the internet. Captured sounds can be saved in WAV or MP3 format, using real-time conversion (without creating temporary files). The program offers direct support for RealPlayer, Winamp, Windows Media Player ,Power DVD ,Flash, Quick time and many others. It also includes a built in WAV/MP3 player, so you can listen to your recordings immediately after you finished recording.";
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 = '...';
}
}