var fDesc=new Array();
fDesc[1] = "from various BBC channels: BBC News, BBC Sport, and BBC World Service. The headlines include news about the UK, any of the five continents (or all of them), sports, entertainment, breaking news, business, health, etc.";
fDesc[2] = "directly onto your desktop. Unlike other newsreaders, MediaTicker gives you a visual perspective on your RSS feeds by displaying content in both text and thumbnail image format. Features include: Watch photo memories and RSS feeds fade in and out or subtly scroll across your screen. Click any thumbnail image or headline to view the full-size picture or website. Send photos via email, set them as your desktop background, print in multiple sizes. Add to your ticker the latest news, sports, headlines, cartoons, photos and more from sites like Flickr, Yahoo and MSNBC using RSS. Save images from RSS feeds to your hard drive by pressing the \"Save\" button in the full-size photo display.* The unique docking âsidebar modeâ keeps the photos on your desktop without interfering with other application windows.";
fDesc[3] = "screen. The application is in an early production stage, but it shows that it has a lot of potential. The looks of this application are certainly a match for commercial-grade application.";
fDesc[4] = "values and the related information from Yahoo! Finance, so there is a 20 minutes delay. The application is simple to use and offers all relevant stock data.";
fDesc[5] = "informed in the same way as those ticker bars known from various TV stations. Never miss any breaking news!";
fDesc[6] = "sources. But checking news from various RSS or Atom feed sources is boring and time consuming. Now, with NewsPiper there is no need to hunt for news here and there and no need to check different RSS or Atom feeds one by one.";
fDesc[7] = "anywhere on the desktop. The text appears in a so-called \"appbar\" which is similar the the Windows Taskbar. All settings are saved between sessions.";
fDesc[8] = "bottom of the screen and displays continiously refreshed stock and indices quotes.";
fDesc[9] = "cent! Includes stock options trading, news events, company earnings reports, and variable levels of difficulty.";
fDesc[10] = "performance, in your local currency.";
fDesc[11] = "from Yahoo or MSN. One click at a headline and a full article is opened in the browser. Features include custom colors, speed, feed update frequency.";
fDesc[12] = "Yahoo! preferences. Just double-click on one of the headlines to see the full version. Now, it also notifies you when you have...";
fDesc[13] = "for getting the time and date fast.";
fDesc[14] = "exchange tickers in TV. As a special feature, a sophisticated time control turns your ticker into a powerful time management tool.";
fDesc[15] = "other PCs within a company. Integrates fully with Active Directory, allowing for rapid installs";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}