var fDesc=new Array();
fDesc[4] = "the fancy world of wellness!";
fDesc[5] = ", Homeopathy, Diagnostic Aids, Tonics, Rejuvenation, Phytochemicals, Parasites, Poisons / Antidotes, Immune System, and Color therapy.";
fDesc[7] = ", neurotransmitters, enzymes, autosuggestion, tonics, natural remedies and strengtheners of the immune-system.";
fDesc[11] = "successful. AAP balances equally and vitally important things like work, health, relationships, main life goals.";
fDesc[13] = "mass index of a person which is calculated from the body height and weight. This index is an indicator of body wellness and lets a person know whether his body weight is normal, underweight or overweight.";
fDesc[14] = "body height and weight. This index is an indicator of body wellness and lets a person know where he stands.";
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 = '...';
}
}