var fDesc=new Array();
fDesc[1] = "basic text editor. Editpad Lite contains a tabbed interface from where you can quicky switch among open files by clicking on their tabs.The tabbed interface also helps in reducing unnecessary cluttering on the workspace.";
fDesc[2] = "configurable popup calendar that opens when the systray clock is clicked. No more double clicking on the clock just to view the calendar in the Date and Time Properties dialog box.";
fDesc[3] = "This tool stays in the system tray and also manages to change the look of your system clock and calendar with various skin change options.";
fDesc[4] = "TimeLeft is attractive, easy to use and highly configurable. Watching seconds ticking away makes some glad event so much closer";
fDesc[5] = ", we can start changing the clock properties. We can choose to show our local current time (12-hour format or 24-hour format, minutes, and seconds), our local current date, the day of the week, and the date and time for two other places located in different time zones.";
fDesc[6] = "seated in your system tray. If you want to get the latest weather conditions, local time, temperature or time in a different place of the world, all you’ll need to do is to take a look at the bottom-right corner of your screen";
fDesc[8] = "gives the opportunity to have a highly customizable tray clock. There are a huge number of skins to suit everyone's needs and preferences. Some of skins make the clock bigger so that the digits are much easier to see. We can set up as many alarms as needed.";
fDesc[9] = "current atomic clock time value. It can then set your PC clock to the correct time.";
fDesc[11] = "tray clock, customized desktop, atomic clock, alarm scheduler, calendar, and more!";
fDesc[12] = "different changeable skins both for clock and calendar. Program has very simple and friendly interface. A lot of settings allow adjusting appearance and activity of program the way you want.";
fDesc[13] = "Windows tray clock. Over 50 skins are included in the distribution. It's also an atomic-time synchronizer.";
fDesc[14] = ", and will update the number displayed when the date changes.";
fDesc[15] = "effective four-quadrant approach to prioritizing tasks. It helps to set goals and pushes you to achieve them.";
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 = '...';
}
}