var fDesc=new Array();
fDesc[1] = "one of the best available. It possesses a very accurate feature for the automatic detection of devices and a wide range of configuration options. Users don’t need to be experts in order to set a whole home theater quickly.";
fDesc[2] = "any significant changes, except, perhaps, a couple of bug fixes from the previous entry in the franchise and some improvements in the voice calling system.";
fDesc[3] = "\"these expressions\" in our computer, making a single call from our computer to others. This software called Microsoft Life Cam version 2.4 is a single program which works with several kind of cameras and of course we can enjoy and talk in a video-conference way.";
fDesc[4] = "active presentations.";
fDesc[6] = "LifeChat headset is a very good quality product. The sound quality is just great, with a noise cancelling microphone. Well, this software doesn't have many options to customize. It just acts as a driver.";
fDesc[7] = "chat typing text in a Window, with a person or group. While chatting, you can use different fonts, colors, backgrounds, emoticons and winks.";
fDesc[8] = "16-bit / 44.1kHz equivalent to 5Gb of uncompressed wav files. It features more than 8000 midi drum patterns with pre-listening, quick browsing and drag’n’drop functionality.";
fDesc[9] = "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[10] = "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[11] = "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[12] = "detail that you see on your screen. It also records sounds from a connected microphone, which can be very useful while making presentations. Even the sound played through the speaker also gets recorded.";
fDesc[13] = "supports all current audio formats. With Magic Music Editor you can record your own music, save it in any of the supported formats or convert it from one format to another, record audio files from a microphone or any other available input device, etc.";
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] = "the basics: speakers and microphone volume controls, and a simple dialer with clear and cancel buttons. The software is free but to get it working you will be asked to setup a payed account.";
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 = '...';
}
}