var fDesc=new Array();
fDesc[0] = "AgileRss software application dedicated to the task of managing the subscriptions, monitoring and syndicated content of an user.
AgileRss - desktop aggregator that is able to display any RSS, ATOM, and XML news feed.
It also allows you to keep up-to-date with all your preferred sources of information that support the RSS protocol. Internet syndication and aggregation software, that runs on any java enabled operating system.";
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 = '';
}
}