// empty _MT_ 















































































function show() {
var v3=document.formular2.vaha.value
if (v3<=20) window.confirm("Warning ,are you sure your weight is only \n\ "+v3+" kilograms?");
var v4=document.formular2.vyska.value/100
if (v4<=1) window.confirm("Warning ,are you sure your high is only \n\ "+v4*100+" centimeters?");
function bmi(v3,v4) {
return v3/(v4*v4);
}
window.alert("Your BMI index is "+bmi(v3,v4));
}
