var fDesc=new Array();
fDesc[0] = "Sonarca Sound Recorder Free is a free program. While it doesn't offer any frills, it is a great basic recording device, and we recommend it.
It is also an online sound recorder to record online audio & video stream.
This sound recorder is capable of recording various sound input to WAV and MP3.
CD quality sound recording.
Extremely resource friendly, CPU usage is below 1% on some new computers.
Intuitive output file management.";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}