Posts tagged as:

amr

BMR Calculator

// function get_bmr() { if (document.bmr_calc.weight.value.length == 0) { alert(‘Weight field is empty!’); return false; } if (document.bmr_calc.height.value.length == 0) { alert(‘Height field is empty!’); return false; } if (document.bmr_calc.age.value.length == 0) { alert(‘Age field is empty!’); return false; } if (document.bmr_calc.gender1[0].checked) { document.bmr_calc.result_bmr.value = 665.51+(9.463*(document.bmr_calc.weight.value) * 0.45359237)+(1.8496*(document.bmr_calc.height.value) * 2.54)-(4.6756*(document.bmr_calc.age.value)); } if (document.bmr_calc.gender1[1].checked) { document.bmr_calc.result_bmr.value [...]

Read the full article →