var fDesc=new Array();
fDesc[0] = "Twidget is a free Dashboard Widget for OS X that allows you to update your Twitter status.
Features
Displays 20 most recent public or friends timeline
Auto-refreshes timeline display
Easily show/hide timeline display
One-click refresh of timeline
Links to reply and Direct Message Twitter contacts
Link to mark tweets as "Favourite"
Recognizes replies and auto-links them to follow conversations
Shows your last tweet regardless of how it was updated (ie: mobile, txt, etc.)
Auto-notification of new versions of Twidget";
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 = '';
}
}