var fDesc=new Array();
fDesc[0] = "It is a lightweight RSS feed ticker.
It is designed to show scrolling headlines from your favorite news sites and blogs, directly on your desktop.
As features:
- Supports RSS, and Atom feed format.
- Shows news title, summary, age and source.
- Customizable interface.
- May be "pinned" to the desktop (always visible) or automatically hide when the computer is in use.
- May be set to automatically hide when in full screen applications (games, movies etc.)
-Customizable keyboard shortcuts to pause the scrolling, pin the ticker, visit the news item and more.
-Can import and export feeds from other feed readers (using OPML).
-Supports subscribing to feeds directly from Firefox.
- Portable.";
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 = '';
}
}