var fDesc=new Array();
fDesc[0] = "Peepster is a windows twitter client that allows you to quickly send tweets without the overhead of timelines, replies, etc.
Peepster is a simple, small text entry form displayed when a customizable global hotkey is pressed that allows you to type your tweet. When you hit enter the tweet is sent and the form minimized to the system tray and you are back to work.
Features
-Single purpose, send tweets
-Minimal Install
-Activate via custom global hotkey";
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 = '';
}
}