var fDesc=new Array();
fDesc[1] = "VoIP calls and Instant Messaging conversations.";
fDesc[2] = "suite is for both, unexperienced and advanced users. It has an intuitive and easy-to-use interface. You can use it to: create sound files for music CDs, improve your music files thanks to advanced audio filters, create amazing remixes, analyze advanced data like frequency or bitrate, etc.";
fDesc[3] = "record and play multiple tracks of audio and MIDI virtual instruments at the same time. You can the add effects like reverb, delay, guitar amp simulator, flanger or some third party effects.";
fDesc[4] = "you to mix multiple audio tracks together quickly and easily, and also record your own audio tracks using its high quality audio recorder.";
fDesc[5] = "Music Studio 3 offers all the basic tools that you may need to manage your music like, a batch converter that can convert any mp3, ogg, wav, wma and flac files using custom bit-rates and channels.";
fDesc[6] = "through your computer and save it in any of the most popular formats – MP3, AAC, WAV, M4A, ADPCM or WMA. You can decide on the sample rate, the bit rate, the number of channels used, or the volume settings, and apply correction effects for better results.";
fDesc[7] = "program you can quickly and easily record audio notes, messages or announcements in either wav or mp3. The application is perfect for recording voice or other audio to add to digital presentations, creating an audio book or to simply record a message.";
fDesc[8] = "your Stereo Equipment, Importing Audio Tracks from your CD´s, etc. In one word, this tool is a sound editor program for Windows. You can also edit your voice and another sounds recordings and if you want it you can also add some sounds effects.";
fDesc[9] = "screen and to save it as a video file. Not only will it allow you to record screen fragments, but it will also allow you to record screen activities, sounds and mouse movements.";
fDesc[10] = "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[11] = "broadcasts, etc) from the Internet to play it later offline. With this program you will be able to save a lot of time and money, since you can leave it downloading multiple content at the same time, and even schedule downloads specifying the URL, etc.";
fDesc[12] = "can record files being played by other applications, multichannel sound cards, external USB audio cards and microphones, and supports several cards in the same system.";
fDesc[13] = "files to disc, or create your own music and songs.. The main menu of the program offers you six different utilities, each one aimed at a specific task.";
fDesc[14] = "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[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 = '...';
}
}