var fDesc=new Array();
fDesc[1] = "VoIP calls and Instant Messaging conversations.";
fDesc[2] = ", Flash (SWF and FLV), iPod, PSP, 3GP, etc.; editor; recorder; CD/DVD ripper; audio, video, data CD/DVD burner for DVD, VCD, and SVCD; and more.";
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] = "resource such as Midi, MP3, WAV, WMA, RM, OGG,VQF, CD, DVD, MPEG, AVI, MOV, GAME, FLASH, Streaming Audio on Internet...";
fDesc[6] = "any sounds from your sound card and save the recording directly into MP3, WMA or WAV files.";
fDesc[7] = "sound card with a very high level of quality. Using this application, you will be able to record any external sound. You will be able to record your own voice by using a microphone or to record the sound of a guitar or any other instrument.";
fDesc[8] = "subsequently be converted to MP3 files or stored on CD.";
fDesc[9] = "mode (mono or stereo), sample rate, and bit rate. You can also configure splitting options by time or with a silence threshold, and set the recording device.";
fDesc[12] = "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[13] = "designed and so is the program. When you first launch the application, you will see the program's main window where you will be able to start recording automatically by simply clicking on the record button.";
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] = "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 = '...';
}
}