var fDesc=new Array();
fDesc[1] = "this program will band together to make one of the largest supercomputers in the world. This supercomputer will be used to simulate problems millions of times more challenging than previously achieved.";
fDesc[2] = "and flexible feature-rich personal information solution that will open up a whole new data storage experience for you!";
fDesc[3] = "also refine the search by selecting one or more of the 24 food categories. A free software with amazing results.";
fDesc[4] = ", 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[5] = "directly within the pathways (colours represent the value). Automatic pathway update from KEGG, BioCarta and GenMAPP.";
fDesc[6] = "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[7] = "requirements and targets in carbs, proteins, and fats, and the target weight for your build. It is great for weight loss or maintenance.";
fDesc[11] = "intake, fat grams, carbohydrates, fiber, protein, cholesterol, along with sodium, potassium, and calcium.";
fDesc[12] = "a set of canned me-too riffs or rules, but an open ended palette of composing modules to powerfully boost your creativity.";
fDesc[14] = "food labels. The spreadsheet displays, summarizes, and prints the nutrient values using convenient household measures.";
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 = '...';
}
}