var fDesc=new Array();
fDesc[1] = "the prayers, in other words is an accountant assistance, a timer and agenda in order to keep a schedule for the prays. It has multiple functions and audio guides to not loose the track of the prayers.";
fDesc[2] = "and Cyrillic alphabet tables, and some other things. This application is designed to help us create all types of reminders: to-do lists, anniversaries, special events, appointments, quick memos, meetings, and so on.";
fDesc[3] = "TimeLeft is attractive, easy to use and highly configurable. Watching seconds ticking away makes some glad event so much closer";
fDesc[4] = "features a colorful, customizable user interface which is really easy to use but not really attractive. You can choose one of several cool color schemes, and also specify the program's window size.";
fDesc[6] = "the current song playing or it can shut your computer down after a certain number of minutes or songs played. It does not require Winamp in order to turn off the computer.";
fDesc[7] = "period of time. The application is very useful if you like listening to music or audiobooks resting in bed before falling asleep. The program sits in your system tray and informs you about the countdown status and enables you to abort or extend the shutdown process whenever you want.";
fDesc[8] = "The product serves as a multifunctional timer to measure the time intervals in addition to displaying time. The system-wide re-definable hot keys are available to change the settings of the timer at any point of time comes in handy.";
fDesc[9] = "great countdown timer with nice design and very simple interface. It provides a nice system of countdown process visualization.";
fDesc[10] = "personal assistant keeps remember you about all important events on time. And even if you need to do your work on time. So Karen’s countdown timer II informs you about all your important affairs and business.";
fDesc[11] = "have to do simultaneously a lot of things during our cooking, like answer our e-mails, picking up our telephone messages, chatting with Mom, etc. You name it! we are working simultaneously with things during our cooking!. This timer will notify us when our meals are done!";
fDesc[12] = "allows you to create any preferred alarm each time you need. The timer-setting option allows you to set the time by hours, minutes and seconds.";
fDesc[13] = "On-Screen messages pop-up on your screen BEFORE you miss them. It's great for meetings, deadlines, and tracking items on E-Bay.";
fDesc[14] = "we can’t switch off our computers manually. For example, when any important process isn’t finished yet, but we have to go somewhere or just need to sleep. Nobody wants to pay for uptime that he/she doesn’t use. This tiny application can help us in such situations.";
fDesc[15] = "in full screen. This program has a simple easy-to-use interface, and it is designed to work with PowerPoint. There is also a sound alarm, it is supposed to be a WAV file, which will be played when the countdown reaches 00:00 of time.";
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 = '...';
}
}