var fDesc=new Array(); fDesc[1] = "weight and height. Therefore, this diagnostic tool called BMI Calculator will help you to identify obesity problems. With this powerful tool everybody can easily get important and valuable information regarding their weight. And with that, improve in a positive way your diet."; fDesc[2] = "underweight, normal, overweight or obese, and what is your ideal weight. It will put you on dynamic chart. Freeware!"; fDesc[6] = "ideal body weight of a person which is calculated based on the gender and height of the person. This software gives best results when used for adults."; fDesc[7] = "software will tell you your BMI and classify you as underweight, normal, overweight, obese or extreme."; 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 = '...'; } }