// JavaScript Document

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!-- Created by: Bob Mason :: http://www.omega-cottage.co.uk/WLS -->
<!-- Begin
function  calculateBMI1() {
  var weight1 = eval(document.form1.weight1.value)
  var heightinch = eval(document.form1.heightinch.value)
  var heightfeet = eval(document.form1.heightfeet.value)
  var height2 = heightfeet*12+heightinch
  var BMI1 = weight1*703  / (height2 * height2)
   document.form1.BodyMassIndex1.value=custRound(BMI1,1);
}

function custRound(x,places) {
  return (Math.round(x*Math.pow(10,places)))/Math.pow(10,places)
 } 
 
 // End -->

  



