var fDesc=new Array();
fDesc[1] = "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[2] = "an option for Date view also. Time format can be changed to 12 or 24 hours (AM-PM) It also offers the Time synchronization with the Atomic clock standard.";
fDesc[3] = "your clockâs face.This clock does not interfere in your work by appearing on any open application and will not occupy much space on your system.";
fDesc[4] = "space. The speciality of this clock is its speaking capability. This clock can tell you the time in more than 30 languages. You can use the global hotkeys Ctrl+Alt+S to know the time, without moving your cursor.";
fDesc[5] = "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[6] = "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[7] = "utility you can change it into digital clock or analogic clock or can combine both the features to make it more interesting. This desktop utility, with just simple right click on the clock will display all the features.";
fDesc[8] = "you to move it to wherever you want. The program is very simple and shows a transparent clock on your desktop which gets even more transparent when you hover the mouse over it.";
fDesc[9] = "large number of skins (even some inventive ones that are quite different from \"standard\" designs): for instance, one that displays the Manchester United soccer team logo, another suitable for children, one featuring the periodic table of elements, etc.";
fDesc[10] = "tray clock, customized desktop, atomic clock, alarm scheduler, calendar, and more!";
fDesc[11] = "time, date and select a sound file for alarm sound . You can hear the alarm sound before saving it. The clock has all the required features for customizing a desktop clock right at your finger tips.";
fDesc[12] = "configure and offers a myriad of combinations for displaying information in tray clock area. It can automatically adjust the clock to atomic time and provides much more options with regards to calendar display.";
fDesc[13] = "a digital clock using various offered clock styles, choose different date styles, add effects to the clock, play chimes and much more.";
fDesc[14] = "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[15] = "based clock, and it is not flash based. This is not a window on the desktop, it serves as your actual desktop. This program consists of Clock and Wallpaper for the Desktop.";
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 = '...';
}
}