var fDesc=new Array();
fDesc[0] = "ToneDecoder Control can decode the DTMF touch key, FSK Caller-ID, Baudot TTY Code, or any custom phone tone from the audio file or wave stream. It can also detect silence, ring-back, busy or other phone tone.
ToneDecoder is the ActiveX Control, and it works with most Windows software development environments. With development tools like Visual C#, Visual Basic.NET, Visual Basic, Visual foxpro, Delphi, C Builder, Access ,Visual C and others that support ActiveX";
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 = '';
}
}