Ideal Body Weight Calculator
function $__() {
var elements = new Array();
for (var i = 0; i 0 && sex == "m") {
$__("ibw").value = Math.round(56.2 * 1 + (height * 0.39 - 152.4 * 0.39) * 1.41) * 1 + " Kgs";
} else if (ms == "metric" && height > 0 && sex == "f") {
$__("ibw").value = Math.round(53.1 * 1 + (height * 0.39 - 152.4 * 0.39) * 1.36) * 1 + " Kgs";
} else if (ms == "us" && height > 0 && sex == "m") {
$__("ibw").value = Math.round(56.2 * 2.20462 + (height * 1 - 60) * 1.41 * 2.20462) * 1 + " lbs";
} else if (ms == "us" && height > 0 && sex == "f") {
$__("ibw").value = Math.round(53.1 * 2.20462 + (height * 1 - 60) * 1.36 * 2.20462) * 1 + " lbs";
}
if (ms == "metric" && height > 0) {
$__("ibw1").value = Math.round(18.5 * ((height * height) / 10000)) + " Kgs-" + Math.round(25 * ((height * height) / 10000)) + " Kgs";
} else if (ms == "us" && height > 0) {
$__("ibw1").value = Math.round((18.5 * (height * height)) / 703) + " lbs-" + Math.round((25 * (height * height)) / 703) + " lbs";
}
}
#outer {
width: 350px;
background: #fff;
text-align: center;
}
#cover {
border: 2px solid #111;
border-radius: 7px;
box-shadow: inset 0 0 13px #888;
padding: 7px 0;
}
.main {
table-layout: fixed;
width: 94%;
border: 0;
border-collapse: collapse;
margin: 0 auto;
}
.main td {
padding: 0 8px;
vertical-align: middle;
text-align: left;
border: 0;
font: 500 11px arial;
}
.main input {
width: 96%;
border: 1px solid #ccc;
margin: 2px 0;
padding: 0 2%;
height: 17px;
font: 500 11px arial;
background: none;
}
td.ac {
text-align: center;
}
.main select {
width: 100%;
border: 1px solid #ccc;
margin: 2px 0;
background: #fff;
height: 18px;
font: 500 11px arial;
}
.main button {
width: 100%;
font: 600 12px arial;
margin: 2px 0;
}
Measuring System | Metric (Kgs, Cms) US (lbs, inches) |
Sex | Male Female |
Height (Cms) | |
As per D R Miller Formula | |
As per WHO recommendations | |
This Calculator is suitable only for Adults over 18 years of age. |
Body Mass Index (BMI) Calculator
<!-- for (var i = 0; i
function __msystem() {
if ($__("msm").value == "metric") {
$__("thm").innerHTML = " (Cms)";
$__("twm").innerHTML = " (Kgs)";
} else {
$__("thm").innerHTML = " (inches)";
$__("twm").innerHTML = " (lbs)";
}
}
function __bmass() {
var ms = $__("msm").value;
var height = $__("hm").value;
var weight = $__("wm").value;
if (height == null || height.length == 0 || weight == null || weight.length == 0) {
$__("bmi").value = "Pl. enter data.";
} else {
$__("bmi").value = "";
}
if (ms == "metric" && height > 0) {
$__("bmi").value = Math.round((weight / ((height * height) / 10000)) * 100) / 100 + " kg/m2 ";
} else if (ms == "us" && height > 0) {
$__("bmi").value = Math.round(((703 * weight) / (height * height)) * 100) / 100 + " kg/m2 ";
}
}
#outer {
width: 350px;
background: #fff;
text-align: center;
}
#cover {
border: 2px solid #111;
border-radius: 7px;
box-shadow: inset 0 0 13px #888;
padding: 7px 0;
}
.main {
table-layout: fixed;
width: 94%;
border: 0;
border-collapse: collapse;
margin: 0 auto;
}
.main td {
padding: 0 8px;
vertical-align: middle;
text-align: left;
border: 0;
font: 500 11px arial;
}
.main input {
width: 96%;
border: 1px solid #ccc;
margin: 2px 0;
padding: 0 2%;
height: 17px;
font: 500 11px arial;
background: none;
}
td.ac {
text-align: center;
}
.main select {
width: 100%;
border: 1px solid #ccc;
margin: 2px 0;
background: #fff;
height: 18px;
font: 500 11px arial;
}
.main button {
width: 100%;
font: 600 12px arial;
margin: 2px 0;
}
Measuring System | Metric (Kgs, Cms) US (lbs, inches) |
Height (Cms) | |
Weight (Kgs) | |
Body Mass Index (BMI) | |
Normal BMI range | |
The calculations are based on WHO recommendations. |
.btn1 {
color: unset;
padding: 6px;
font-size: unset;
margin: unset;
border-radius: 5px;
}
Blood Pressure Prediction
Check blood pressure:
Your blood pressure is
function bloodpressure(formName) {
var systolic = formName.systolic.value;
var diastolic = formName.diastolic.value;
if (systolic < 80 && diastolic < 50) {
document.getElementById("result").innerHTML = "very low! Possible hypotension. Consult your doctor if you have symptoms of low blood pressure.";
} else if (systolic < 91 && diastolic < 65) {
document.getElementById("result").innerHTML = "very low! ";
} else if (systolic < 101 && diastolic < 71) {
document.getElementById("result").innerHTML = "low!";
} else if (systolic < 121 && diastolic < 81) {
document.getElementById("result").innerHTML = "normal! Risk for coronary heart disease is minimal.";
} else if (systolic < 130 && diastolic < 86) {
document.getElementById("result").innerHTML = "slightly above normal! Risk for coronary heart disease is minimal.";
} else if (systolic < 140 && diastolic < 90) {
document.getElementById("result").innerHTML = "slightly increased! Risk for coronary heart disease is minimal to low.";
} else if (systolic < 160 && diastolic < 100) {
document.getElementById("result").innerHTML = "increased! Possible hypertension (stage 1). Risk for coronary heart disease is increased.";
} else if (systolic < 180 && diastolic < 110) {
document.getElementById("result").innerHTML = "moderately increased! Possible hypertension (stage 2). Risk for coronary heart disease is increased. Consult your doctor!";
} else if (systolic < 250 && diastolic < 190) {
document.getElementById("result").innerHTML = "severely increased! Possible hypertension (stage 3). Risk for coronary heart disease is increased. Seek medical advice!";
}
}
Systolic blood pressure: | mmHg | |
Diastolic blood pressure: | mmHg |
Your blood pressure is