var fDesc=new Array();
fDesc[1] = "these games are brainy games. Brain Workout presently has verbal, numerical, spatial, memory and logic types of games. Under Verbal category you will find games of Anagrams, Spelling Test, Split Words, Word Ladders, word Search and Word Wise to enhance your English vocabulary.";
fDesc[2] = "free from stress and physical disorders. Finding a good gym and a good instructor is not the only way to stay fit if we have our own workout equipments and a very reliable pocket instructor in applications such as this great application.";
fDesc[3] = "beginners and health professionals alike. It will help you lose your extra body weight or maintain your current body health and fitness. By using this program, you will be able to initiate a perfect diet regime, monitor it, trace your activities and the lost body weight.";
fDesc[4] = "for all age groups. In the refined online league system you can match yourself with the rest of the world. Have fun - just be quicker!";
fDesc[5] = "of your PC. In the notification space of your desktop it shows you a message, with the information of the last break and the time for the next one.";
fDesc[7] = "minute are. The author of BeatScanner owns a workout website, so he is marketing this application for those who need to find music that is good for workouts.";
fDesc[8] = "program allows you to set goals and then register the actual training, so that you can compare both records later on. It produces several graphical reports and supports Timex Data Recorder devices.";
fDesc[9] = "ignored. Cool Mouse rectifies that.";
fDesc[10] = "speaker or speak English as a second language, English Workout can help you to learn further. The basic dynamic of the program is taking quizzes. It organizes quizzes into several categories you can select.";
fDesc[11] = ", concentration, and logical thinking. Brain Workout is the perfect game for those looking to improve their mental capacity, and tone down the natural effects of mind aging.";
fDesc[12] = "developers of Diet Buddy you can use your computer in a struggle for a great body now. This application gives you all statistics about the weight losing process.";
fDesc[13] = ", record your routines, and view your progress. Sync with your desktop computer to view graphs and print your results.";
fDesc[14] = "weightlifting and cardio exercises, or add your own custom exercises. Calculate your body fat percentage, BMI and BMR";
fDesc[15] = "database, and view your nutritional requirements, such as RDA's.";
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 = '...';
}
}