var fDesc=new Array();
fDesc[0] = "With NewsDesk you can:
- Get the latest headlines from around the web, delivered automatically to your desktop
- Read web pages without leaving NewsDesk
- Search for headlines using lightning-fast keyword and age filters
- Browse headlines immediately using our NewsMenu system tray icon
- Hide headlines you've read
- Send headlines using email
- Drag and Drop RSS links from any web browser
- Automatically subscribe to channels when you use the "Subscribe to this feed" link found on many web pages
Other features:
- Reads all RSS channels (.9x, 1.0, and 2.0)
- Uses HTTP ETag and If-Modified-Since headers to accelerate updates
- Imports and exports Open Content Syndication (OCS) channel directories
- Imports and exports Outline Processor Markup Language (OPML) channel directories
- Supports <xhtml:body> for XHTML headline descriptions
- Supports gzip-compressed channels";
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 = '';
}
}