var fDesc=new Array();
fDesc[1] = "also refine the search by selecting one or more of the 24 food categories. A free software with amazing results.";
fDesc[2] = ", analyze and graph all of the important aspects of your diet and fitness, like your calories, carbs, fat, protein, nutrition, eating patterns, metabolism, activities, weight loss, measurements, moods, and other trends.";
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] = "versatile program will be of your personal interest. Cron-o-meter is a useful application that will help you to track your daily diet in a strict way, and control every serving of food with details.";
fDesc[5] = ", Burger King and Pizza Hut. Calorie Counter calculates your Basal Metabolic Rate (BMR) calorie requirements and BMI.";
fDesc[6] = ", recipes. This particularly program has a big working area, where you can work and open simultaneity different types of recipes, these recipes are classified by category, each category has its recipes.";
fDesc[7] = "names. There is whole information about food, its calories, fat, minerals and so on. Chart helps to observe the dynamics of change.";
fDesc[8] = "bicycle rides like distance, speed, climbing, time, Heart Rate, etc. It helps you in your training by enabling you to analyze your rides through various reports and graphs. CycliStats is a powerful tool which comes with a built-in Gearing Calculator and Calorie Calculator.";
fDesc[9] = "doctor visits. Ability to scan in documents, save studies, print emergency permission slips, charts and more.";
fDesc[10] = "you, what this software does. You can write your own recipes and the program will calculate value such as : Calories, fat, Total fat, Saturated Fat, Cholesterol, Dietary Fiber, Protein. You can have control of your daily meals.";
fDesc[11] = "BMR is influenced by a number of factors: gender, age, height, weight, body composition, stress, environmental temperature and other.";
fDesc[13] = "intake according to your height, weight and age. Also taking into account how active you are and if you are male or female.";
fDesc[15] = "the daily calorie intake that your body requires. This is calculated on the basis of your height, weight, age, gender.";
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 = '...';
}
}