var fDesc=new Array();
fDesc[0] = "Tweetings is a simple and easy to user Twitter client for your Windows based PC.
Display your timeline, tweets and favourites
Post a message to Twitter or re-tweet
Reply to tweets
Toggle tweets as favourites
Browse your friends and followers
Manage unread tweets
Follow / Unfollow people
Display a user timeline
Post some or all your Tweets to Facebook
Post links using a number of URL shortening providers
Built in web browser for viewing web pages and pictures
Choice of two themes
Direct message support
View followers and who a user is following
Automatically preview Twitpic images
View twitter trends and perform custom searches";
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 = '';
}
}