var fDesc=new Array();
fDesc[0] = "Textwit is a simple and powerful new Twitter client for Windows.
Features:
- Upload pictures and/or media to Flickr™, yFrog, Twitpic, Mobypicture and Twitgoo with drag & drop support.
- Mantain an unlimited number of timelines open at the same time with automatic updates.
- Choose from two different timeline sizes. Normal and Large (with big avatars).
- Save text snippets as drafts for later use and get them easily while you write a new tweet.
- See details of each user by clicking on their avatar, also see responses to other tweets when available.
- Textwit remembers where you were last time you used it. Your full session of opened timelines is preserved.";
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 = '';
}
}