// empty _MT_ 















































































function show() {
var v1=document.formular1.weight.value
if (v1<=40) window.confirm("Warning ,are you sure your weight is only \n\ "+v1+" pounds?");
var v2=document.formular1.high.value
if (v2<=1) window.confirm("Warning ,are you sure your high is only \n\ "+v2+" inches?");
function bmi(v1,v2) {
return ((v1/(v2*v2))*703);
}
window.alert("Your BMI index is "+bmi(v1,v2));
}

