var fDesc=new Array();
fDesc[1] = "rest then as an icon in your system tray, showing you the temperature in the chosen location. If you double click over that icon, you can access some more weather information through several pages.";
fDesc[2] = "alerts and forecasts. You can choose Forecast, and access the weather information for the oncoming days. You can also view Radar & Maps, Severe Weather Warnings, Live Traffic Cams, Weather News, Outdoor Health, Weather Fun, Photos and Videos.";
fDesc[3] = "protects your computer. The program provides free screensavers, browser skins and cursors, smileys, among many other things, and also protects your computer against spyware and other threats.";
fDesc[4] = "information from WeatherBug weather stations, or as reported by NWS. It retrieves the current conditions, hourly forecast, daily forecast, severe weather alerts from NWS (only in the US), and weather maps for thousands of cities world-wide.";
fDesc[5] = "external resources to get even more information. Weather Exchange can display some maps from United States, Central/South America, etc. showing temperature, humidity, windchill and more.";
fDesc[6] = "and even assign reminder so you won't forget them. The program features a nice, colorful and intuitive user interface, very customizable and suitable for beginners.";
fDesc[8] = "the leader in weather reporting, weather.com. No weather enthusiast should be without this utility. WeatherMan provides a wide array of tools and utilities for weather data management on the desktop. Its packed with dozens of fun and useful features to enhance the way you receive your weather...and it's just plain cool!";
fDesc[9] = "warning just like you see on News programs on television, with a preceding audible alarm sound before the text crawl begins, providing you with the earliest of warnings.";
fDesc[10] = "information, State Radar, and an 8 Day Weather Forecast as well as State Satellite weather information, covering the communities of Tennessee and the wider region. This important coverage enables WVLT-TV to provide up to the minute severe weather alerts";
fDesc[11] = "an almanac, rainfall information, and severe weather alerts. But you can be alerted within minutes about severe weather conditions by downloading their News 3 Now Desktop Weather software.";
fDesc[12] = "quietly in your taskbar displaying the current temperature of your location. If WITN sends you an alert, you will hear an audible sound from your computer, after which a text crawl, just like a newsreel crawl, will display your weather warning across your computer.";
fDesc[13] = "browser to get the most updated weather forecasts.";
fDesc[14] = "below any window, or attached to the desktop. Size and transparency can be adjusted. Glass window can be added.";
fDesc[15] = "Australian locations. Features include live warnings, custom alerts, radar and satellite images. The Weather Tracker widget is available as a free download for Windows and Mac platforms.";
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 = '...';
}
}