BMI
De Body Mass Index (BMI) is een index voor het gewicht in verhouding tot lichaamslengte. De BMI geeft een schatting van het gezondheidsrisico van je lichaamsgewicht. De BMI kan worden berekend voor kinderen en volwassenen van 2 t/m 70.
Ben je te zwaar of juist te licht? Of je een gezond gewicht hebt, bepaal je met de Body Mass Index (BMI) en de middelomtrek.
Een gezond gewicht is belangrijk, omdat mensen met overgewicht en obesitas meer kans hebben op ernstige ziekten. Dit zijn bijvoorbeeld diabetes type 2, hoge bloeddruk, galstenen, hart- en vaatziekten, rug- en gewrichtsklachten en bepaalde soorten kanker. Ondergewicht kan ook gezondheidsklachten veroorzaken.
De BMI (Body Mass Index) geeft de verhouding weer tussen je gewicht en je lengte. Sommige bevolkingsgroepen hebben een andere lichaamsbouw, bijvoorbeeld Aziaten en Hindoestanen. Voor hen zijn de BMI-scores anders.
function calcBMI(){
// Get Variables and validate to make sure they're numbers, // setting them to a value of 1 if they're not.
var weight = (isNaN(document.wcbubba.weight.value)) ? 1 : document.wcbubba.weight.value;
if (weight == 0) alert("Results will be inaccurate. Weight is not a valid number.");
var height = (isNaN(document.wcbubba.height.value)) ? 1 : document.wcbubba.height.value;
if (height == 0) alert("Results will be inaccurate. Height is not a valid number.");
// set multipliers based on whether metric or English units were selected
var wmult = (document.wcbubba.units.value == "pounds") ? 2.204 : 1;
// Turns inches/centimeters into meters
var hmult = (document.wcbubba.hunits.value == "inches") ? .0254 : .01;
// Do the calculation (weight in kg divided by the height in meters // times itself). The multiplication by 10 and then division by ten // work in conjunction with Math.round() to round the value to one // decimal place of precision.
var BMI = Math.round(((weight / wmult)/((height * hmult)*(height * hmult))) *10)/10;
// get the analysis - note this is for general purpose, there is a separate scale for // Southeast Asian people and there may be more variants on the way
var result = ""; if(BMI < 16.5) result = "gevaarlijk ondergewicht"; else if((BMI >=16.5)&&(BMI<=18.49)) result = "ondergewicht"; else if((BMI >=18.5)&&(BMI<=25)) result = "normaal"; else if((BMI >=25.01)&&(BMI<=30)) result = "overgewicht"; else if((BMI >=30.01)&&(BMI<=35)) result = "obesitas (veel te dik)"; else if((BMI >=35.01)&&(BMI<=40)) result = "Klinische obesitas (gevaarlijk dik"; else result = "morbide obesitas (levensgevaar)"; document.getElementById('results').innerHTML = "Uw Body Mass Index (BMI) is: " + BMI + ". Dit wordt beschouwd als " + result + "."; }