var fDesc=new Array();
fDesc[0] = "There are many microblogging services out there. Sometimes you feel you have a “message” to send or a question to ask. If you subscribed many services, one of the first questions arising is: where do I post this? Twitter? Jaiku? Tumblr? Friendfeed? all of them? For each service usually you have to: open the browser, login, write message, click post. Although some cut and paste can save you some time, the task can get boring soon. Posty simplifies your microblogging. All you have to do is writing the message and clicking a button. Posty, an award winning application, will automatically deliver your message to the services you selected.";
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 = '';
}
}