var fDesc=new Array();
fDesc[0] = "TwitHaven is a private and internal messaging system useful for sending short messages and attachments that can be optionally sent on to email and SMS networks. The program removes the complexities of email and SMS text systems.
You can open TwitHaven by choosing TwitHaven from under the Window menu.
TwitHaven, runs on Windows platforms or via a browser, so you can share your messages with any other users world-wide.";
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 = '';
}
}