var fDesc=new Array();
fDesc[1] = "from your DV camcorder or from a VHS tape (if you have the right connectors); or simply capture video from a webcam, or anything that is connected to your computer. AVS Video Recorder quickly detects which connection is showing video and it auto-selects it.";
fDesc[2] = "repeat them. The program sits silently in your system tray and allows you to record and stop recording using hotkeys. The application enables you to save the operations to a script file, which you can later replay or modify as you wish.";
fDesc[4] = "own voice by microphone and the audio from your computer.";
fDesc[5] = "software, you will be able to extract any part of an audio file and then mix it with other music files. The application allows you to set the start-time and the end-time of each audio file you are working with.";
fDesc[9] = "for each channel. It serves for the storage of speech information received by telephone, microphone, radio stations, voice modem.";
fDesc[12] = "ripping and gap less recordings. Play MP3, OGG, WMA files in full featured JukeBox, ID3 Tagging, Album creation and more.";
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 = '...';
}
}