Widget:Kroppsoverflate
<html> <script type="text/javascript"> { var height; var kg; var bsa; function Calculate(form) { /* høyde i centimeter */ form.ht.value=Math.round(form.ht.value); //rund av height = eval(form.ht.value); /* vekt i kg */ form.wt.value=Math.round(form.wt.value); //rund av kg = eval(form.wt.value); /* Mosteller-metoden*/ bsa = Math.sqrt(height * kg / 3600); bsa = bsa * 100; bsa=Math.round(bsa); bsa=parseFloat(bsa); bsa = bsa/100; form.bsa.value = bsa; form.bsa.style.backgroundColor = "#f6f57a"; } /* Nullstill-funksjon */ function clr(form) { form.ht.value = ""; form.wt.value = ""; form.bsa.value = ""; form.bsa.style.backgroundColor = "silver"; form.ht.focus(); } } </script>
<form>
Beregning av kroppsoverflaten (Body Surface Area, BSA)
|
</form> </html>