var fDesc=new Array();
fDesc[1] = "effects, equalize, analize, import and export audio tracks in formats wav, aiff, mp3, ogg vorbis, flac, mp2. Its Available for Windows 98/NT/XP/Vista, Linux/Unix, Mac OSX.";
fDesc[2] = "many options and applications. You can cut, copy, and paste recordings or parts of them, and also add some effects such as echo, amplification and noise reduction.";
fDesc[3] = "VoIP calls and Instant Messaging conversations.";
fDesc[4] = "accompany you anytime, anywhere.";
fDesc[5] = "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[6] = "sound files for music CDs, dance programs, websites, answering machines, Windows sounds, and much more. It includes a lot of of effects and editing features for professional sound production.";
fDesc[7] = "stations and broadcasts. Basically, it acts as a front-end tool for several programs with the sole purpose of recording and downloading online music.";
fDesc[8] = "Shows, Online TV Broadcasts, video clips, audio archives, and Podcasts. Replay Av comes with many customization options for recording and saving with an easy to use interface. It provides facility to save record clips instantaneously.";
fDesc[9] = "microphone, internet streaming audio, music played by Winamp, Windows Media Player, Quick Time, Real Player, Flash, Games, etc.";
fDesc[10] = "you design your own sound. There are tools in the program which are very practical for working with sound. They let you process, edit and record sounds in both wav and mp3 formats. The software is a sound editor, audio editor and wav editor in one package.";
fDesc[11] = "Internet radio that the program can find. You can save hundreds of MP3 files in a few hours, without the need of using file-sharing networks.";
fDesc[12] = "program is really easy to install and use, and in a few seconds all the sounds played on or through the PC will be recorded as wav or mp3 files with no loss of quality.";
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] = "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] = "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.";
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 = '...';
}
}