var fDesc=new Array();
fDesc[0] = "Karoro is a light-weight, streamlined Atom and RSS feed reader for Windows designed with usability in mind. News isn't treated like mail; instead, everything is shown as a river-of-news, easily sortable by source, date and timespan.
The main features are: you can subscribe to Atom/RSS feeds, offers river-of-news display layout, has custom CSS styles support, persistent news storage and automatic detection of feeds on pages and news are sorted by source, date and timespan";
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 = '';
}
}