var fDesc=new Array();
fDesc[0] = "SOUND ARCHIVE PRO is the most powerful, versatile and user friendly solution for multichannel programmable sound recording.
The best software solution if you are looking for:
- archiving of medium / large conferences
- archiving of multiple radio stations
- archiving of trials / law-cases (in law courts)
- surveillance (this is illegal without authorization)
- archiving of lectures (courses) in universities / colleges
- real-time recording of multiple audio sources";
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 = '';
}
}