var fDesc=new Array();
fDesc[1] = "include your notes, tasks, reminders. The program «feature» is its layer system – separate organizers functioning simultaneously. Excellent choice for a home user!";
fDesc[2] = "computer's desktop. Everyday when you powered on your computer, you will see a calendar on your desktop with your full control. It's useful freeware.";
fDesc[3] = "calendar on your screen, along with a To Do list, Event window, and a weather forecast for the next six days, along with the current weather. The program allows you to customize its appearance by changing the skin of the interface.";
fDesc[4] = ", which you can use to keep track of your events if you have a Google account. It's a free software and runs on Windows, Linux and Mac";
fDesc[5] = "is possible to change the clock appearance by customizing the color of each item (time, date, working day, background, etc.), or by changing the skin. Some of the skins available are animated and quite original.";
fDesc[6] = "simply going to the desktop on your system. With this application organizing and maintaining your schedules now is an effortless process for you.";
fDesc[7] = "lets you plan your everyday activities and schedule easily and fast. Fully customizable, it can change your working atmosphere by modifying what you see on your screen.";
fDesc[8] = "interval or by weekly or monthly basis. You can also select cyclic or random mode. It also has four positioning options Tile, Center, Stretch and Smart. You can add lots of pictures to rotate your computer’s desktop wallpapers.";
fDesc[9] = "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[10] = "WorldClock is one of these utilities that will enable you to improve your timezone-related skills. First of all, you will see the function of timezone calculator that will display the corresponding time in several parts of the world.";
fDesc[11] = "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[12] = "events in no time. The tool organizes your whole life in real time; with the option of quick access to upcoming events, you are able to plan ahead.";
fDesc[13] = "include fiscal calendar, current date-timestamp, day of the week, notes, every day area etc. The notes area is used to capture the day-to-day activities. The font, color and style can be changed. Title of the notes can be changed.";
fDesc[14] = "on your desktop. A wide range of settings allows you to customize every element of calendar at your will. Program also includes many variants of layout.";
fDesc[15] = "synchronized with Outlook in order to provide information about tasks and appointments directly on your desktop. It also shows a weather forecast for your area and of course a calendar marking the current date.";
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 = '...';
}
}