var fDesc=new Array(); fDesc[0] = "Easily calculate your body mass index. Just enter your weight, height and sex and BMI Calculator will indicate if your are underweight, normal, overweight or obese, and what is your ideal weight. It will put you on dynamic chart. Freeware!

- Supports English (lbs, feet, inches) and metric (kg, cm) system
- Calculates BMI
- Calculates your ideal weight
- Puts your data on dynamic chart
- Easy to use
- Supports all Windows versions
- Free"; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }