var fDesc=new Array();
fDesc[1] = "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[2] = "displayed information you can see the hours of the day, the weather condition in every hour, the temperature in Celsius and Fahrenheit, wind speed (mph) and its direction, etc.";
fDesc[3] = "file. Very useful when you are out of home and want to see for your childs.";
fDesc[4] = "websites for changes and updates. It enables you to monitor web pages, password protected pages, forums for new postings and replies, RSS feeds, newsgroups and local files.";
fDesc[6] = ", specially on newly added programs and certain file types and registry entries. The program can be installed in English or French. The purpose of Tiny Watcher is to help you to speed up your PC, by cleaning unnecessary files, useless programs, etc.";
fDesc[7] = "windows are opened on your desktop? Window Watcher is a small utility that was developed for giving you detailed information about all visible and hidden windows that are created by the running applications. Such information can be really useful.";
fDesc[8] = "easily kick a certain user or all users connected to your computer. The program has the ability to run as a Windows service. Shortcut keys are present to perform repeated tasks.";
fDesc[9] = "STANDBY system. The tool allows you to view multiple cameras displays at a time or one by one by adjusting the display screen as per your choice.";
fDesc[10] = "your system. With the help of File Backup Watcher you can make handy backups of your important files and folder in no time using your Network, E-mail, FTP, CD-R, CD-RW, DVD-R and DVD-RW.";
fDesc[11] = ", video/audio logging and broadcasting. Used together with free RemoteView, you can do real time remote surveillance.";
fDesc[12] = "you’re currently watching so you don’t need to use your web browser and login into eBay anymore. This cool plug-in is available for free and is good to know that has been tested to work correctly with Google Desktop Search.";
fDesc[13] = "Javascript. With the Parental Protection feature it's easy to include or exclude web pages by URL, or by defining a set of keywords.";
fDesc[14] = "via UDP and TCP protocols, and works in IPv4 and IPv6 networks, records, stores, organizes and displays syslogs.";
fDesc[15] = "websites are working or not. The graphical user interface provides several buttons so that we can easily enter as many DNS server address entries (or IP address) and host names as needed.";
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 = '...';
}
}