var fDesc=new Array();
fDesc[0] = "CONVERGE Pro 2 Dialer applications are simple to set up and easy to use. They work with all products in the CONVERGE Pro 2 platform and provide very convenient usage for dialing and control with an intuitive graphical user interface.
The new Dialer applications for CONVERGE Pro 2 DSP products allow dialing and control from Windows or Mac PCs and mobile phones and tablets running on both Android & iOS platforms";
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 = '';
}
}