var fDesc=new Array();
fDesc[0] = "Feed My Twitter is a free light weight Twitter client to post twitter updates/messages from your desktop.
- Post Twitter messages from your desktop without the hassle of logging into your Twitter account each time you want to post a message to Twitter.
- Light weight client and very easy to use. Feed my Twitter can hide in your tray icon so it won’t be in the way when using your computer. When you have the urge to twit, just click the tray icon and twit. It’s that simple.";
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 = '';
}
}