var fDesc=new Array();
fDesc[0] = "123WebMessenger is an IM software for your website, with text and video chat options, which enables one to one private chat among users.
- One way to launch the IM is just like Facebook bar, 123WebMessenger adds an IM toolbar to your website, keeping the visitors active, connected and addicted. There is a friend list dock at the bar and it's for users to manage buddies.
- Another way is an invitation button on your webpage to start one to one private chat.
- It has an optional desktop IM app. with friend list too, which creates tight bonding among users.";
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 = '';
}
}