var fDesc=new Array();
fDesc[0] = "ISL Pronto allows you to improve your customer support via live chat. All you need to do is add a few lines of HTML/JavaScript code to your website source code. The live chat button, which appears on your website, allows instant real-time communication between your website visitors and your sales and support staff.";
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 = '';
}
}