var fDesc=new Array();
fDesc[0] = "A client-server application in which you can chat with your friends and enter german/erotic/international chat rooms.
You can test your server connection by double-clicking the black-screen lag indicator in the status bar. When an update notification is displayed in the status bar, double-clicking it opens the pluto download page in your standard browser. If you want to know if your dialog partner has lost connection, you can check out the Ping feature: Dialog/RMB/Extras/Ping.";
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 = '';
}
}