var fDesc=new Array();
fDesc[0] = "myFriend is a revolution in communication for people who are deaf or hard of hearing. It provides the utility of a telephone on a Windows computer enabling high quality video, audio and real time text chat that is being called “total conversation”.
myFriend is extremely easy to use with a minimal number of buttons. It connects to a network that provides a number of useful resources for profoundly deaf and hard of hearing 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 = '';
}
}