var fDesc=new Array();
fDesc[0] = "Snooper is a professional sound/voice activated recorder application for Windows with advanced trigger, flexible filter settings and a built in spectrum analyzer.
The user interface is well organized and is suitable for all types of users, from beginners to highly experienced people. A voice activated recording (VOX) is automatically triggered when sound is detected above an adjustable threshold. The audio recording is then saved with a timestamp when there is silence. Sound activated recording mode where all recordings are captured and collected into a single file. Individual recordings can be located inside the file by time-stamps.";
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 = '';
}
}