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] = "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[4] = "installing it, the program asks you your location, in order to display the matching weather information. You can select a location in a wide list of locations in Canada or the United States, or in main cities in the rest of the world.";
fDesc[5] = "weather forecast of the searched city. You can search your city by typing city name or zip code. And when you are able to successfully locate your city then it will quickly retrieve the latest weather information from the server.";
fDesc[6] = ", national and local weather forecast for cities worldwide, recovering the information through the Internet from a worldwide weather forecast database that holds data for more than 210 countries and 27000 towns.";
fDesc[7] = "forecast, radar, maps and more! Comes with a FREE customizable Crawler Toolbar that has terrific plugins.";
fDesc[8] = "for more than 50,000 locations worldwide. WeatherMate offers you a simple and very easy to use interface with multiple customization options. You can use the metric or the English units and switch between them in no more than two clicks.";
fDesc[9] = "Windows style interface is customizable allowing you to change the skin to any color variation you prefer. The window of the interface displays like a web page with six selective buttons on the left.";
fDesc[10] = "manages various activities with various features to remind activities like birthday, meeting, important event, holiday, daily, weekly events and many more. Once your region/city is selected, Actual Reminder also shows weather forecast for 10 days";
fDesc[11] = "in the ocean, where a beautiful lighthouse stands proudly against the waves, ready to guide ships to safety. It includes the ability to connect to the Internet and show you the latest news and weather reports extracted directly from different channels.";
fDesc[12] = "will provide you with up-to-date information about the weather conditions in any city you want. It connects to several of the best weather report stations in the world to provide you with accurate information.";
fDesc[13] = "forecast window to desktop. Hourly forecast is present for 2-3 days. Two sources of forecast for 9 days. Internet connection required";
fDesc[14] = "with a lot of information about many different things. You will receive weather information of your favorite city, plus weather forecast for the following days. You will be able to look through one of the hundreds of webcams in the world.";
fDesc[15] = "shows the forecast for 10 days either on the calendar, or in a system tray, or on a special side-bar. Besides of the possibility to view the weather forecast, in this calendar there is a reminder, a datebook, the list of tasks and much more.";
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 = '...';
}
}