var fDesc=new Array();
fDesc[0] = "i-Sound is a direct audio recorder for Windows 7 and Windows 10. You can record sound from internal or external source into popular audio formats directly without costing any other disk space. "Stereo Mix" input no longer required. i-Sound Recorder have simple and intuitive skinnable interface.
Main features of i-Sound includes : scheduled recording, noise reduction, automatic gain control, voice activated recording, auto-stop, split-by-time, automatic file name generation, tag editor.
Supported output formats: AAC, MP3, WMA, OGG, APE, WAV, FLAC
Sampling rates: from 8000 Hz to 192000 Hz.
Recording mode: Mono/Stereo";
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 = '';
}
}