var fDesc=new Array();
fDesc[0] = "Weblin is a program which makes innovative communication possible across all sites with a new breed of digital avatars.
Features:
-a brand new chat experience, with your animated 3D avatar, chatting in speech bubbles
-freedom of speech on every website
-a wide variety of pre-built avatars and the ability to upload your own pictures for custom avatars
-contact lists so that you can see which of your friends and contacts are online
-a social bookmarking system to flag content you and your friends would enjoy";
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 = '';
}
}