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] = "nutritional information. Other features include ingredient database, grocery lists, web integration, import and export, and more.";
fDesc[3] = "people on diets, whose fat or carb intake must be limited. You will feel completely captivated with the value descriptions of each food. It is up to us to eat well and healthy, here is an excellent tool to consider.";
fDesc[4] = "really enjoy cooking and sharing are always looking for new stuff on the market. Well, based on this feeling, we had the opportunity to review this program named Cookbook Wizard for Windows. This is the most advanced recipe program ever developed for personal computers.";
fDesc[5] = ", Homeopathy, Diagnostic Aids, Tonics, Rejuvenation, Phytochemicals, Parasites, Poisons / Antidotes, Immune System, and Color therapy.";
fDesc[6] = "maximize nutritional quality and eliminate waste. The program offers you create Pantry, Recipe Book, and Menu plan. It will calculate your needs for any period you want. You will be able to get a shopping list with items list, cost and quantity of products you need.";
fDesc[7] = "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[8] = "software is based on The U.S. Department of Agriculture. MyPyramid food guidance system is a handy handheld tool will help you choose the foods and the amounts that are right for you. This guide puts all the nutritional and diet information, tips and it is easy to use.";
fDesc[9] = "Selector function can be used to balance nutrients by combining natural foods.";
fDesc[10] = "exercise, organize recipes and get nutritional information. Other features include ingredient database, grocery lists, import and export, and more.";
fDesc[11] = ", calculate costs, and get nutritional information. Other features include ingredient database, inventory, web integration, import and export, and more.";
fDesc[12] = "item databases. With a slider you can easily adjust the food weight and recalculate nutritional values.";
fDesc[13] = "database, and view your nutritional requirements, such as RDA's.";
fDesc[14] = "intake, fat grams, carbohydrates, fiber, protein, cholesterol, along with sodium, potassium, and calcium.";
fDesc[15] = "consumption and get detailed graphs, statistics and reports. Compare your nutritional intake with that of a recomended one and get results.";
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 = '...';
}
}