var fDesc=new Array();
fDesc[0] = "All voice chats: just click on a sound clip button during a chat.
Live Messenger text chat: press the F4 key in your keyboard
to bring Loco4chat forward and then select a sound clip to play. What's new: sound recorder, my sound clips, volume adjustment, auto update";
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 = '';
}
}