var fDesc=new Array();
fDesc[0] = "C2TN is the first RSS Reader which integrates completely into your desktop
Features:
- Supports all current RSS, RDF and atom feed formats
- Application can be conrolled from server using optional news format (RSS 2.0 Extension)
- 100% desktop integrated into the taskbar (system tray)
- Direct-to-Desktop-Alert technique
- Scheduler for automatic refreshing of feeds with feed-specified refresh intervals
- Flexible filter configuration for news
- Per feed configurable alerts of new news (ticker, popups, balloon help, sound)
- OPML import and export
- Proxy server support
- Feed authentication
- HTTPS support
- All configuration files are xml files";
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 = '';
}
}