var fDesc=new Array(); fDesc[0] = "EoWeather is a program that shows you weather information on your desktop. This utility can show international, national and local weather forecasts 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. EoWeather can display the weather data in three different ways. The classical style displays the weather information in real time and the next 7 day weather forecast. The station style displays weather forecast for different moments of the day. The compact style displays only real time weather, which is updated every 2 minutes. Once EoWeather is installed, it sits as an icon in the system tray. Right-clicking over that icon will open a contextual menu, that will show you different commands. Clicking on "EoWeather" will launch the main window of the application. If you click on the Option button will allow you to set the preferences for the program, such as temperature degrees, location, hotkeys, etc.
This program can be set to run in English, French, Italian or Spanish through the Language Option in the context menu."; 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 = ''; } }