var fDesc=new Array();
fDesc[0] = "RSSMate, a free RSS and Podcast reader, has been designed for maximum simplicity and compactness.
-Support for multi-language feeds
-Podcast support for audio and video linked content
-Support for all recognised RSS and Atom XML formats
-Bandwidth friendly by checking feed headers for changes
-Supports 'gzip' compressed feeds
-Customizable update intervals
-Customizable layouts including "Docked Desktop" option
-Customizable fonts
-Support for 'proxy server' connections
-Search functions";
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 = '';
}
}