var fDesc=new Array();
fDesc[1] = "VoIP calls and Instant Messaging conversations.";
fDesc[2] = "music and stories recorded by the user himself. It is very simple and easy to use, but it doesn't allow adding visual effects to presentations or editing pictures. It runs on Windows Vista and all versions of Windows XP.";
fDesc[3] = "upload audio files from or to their recorders. Also add messages from the computer to the digital recorder, or edit-split a message into two or combine several, up to five in one.";
fDesc[4] = "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[6] = "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[7] = "mouse cursor. This application is very easy to use. Just select an area of the screen or a window you want to record and click on the start recording button. You can stop the recording at any time using Ctrl+Del buttons.";
fDesc[9] = "include silent skip (Silence Detector), file size limits, and more.";
fDesc[10] = "the outside by using a microphone. Using this program, you will be able to record your own voice, to record a song you are listening on some Internet site, record fragments from any movie or video file you are playing at the moment, etc.";
fDesc[11] = "Player) into MP3,WMA, WAV files. It features a built in audio player with play list, an mp3 cutter, mp3 joiner, ID3 tag editor, and more.";
fDesc[12] = "own voice by microphone and the audio from your computer.";
fDesc[14] = "speakers and interacts well with your other music programs like Windows Media Player. Downloading initially downloads a Windows Installer package that leaves a guitar icon on your desktop.";
fDesc[15] = ", ease-of-use, and some great browser enhancements. And best of all, it's 100% FREE! Why not download it right now?!";
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 = '...';
}
}