function calc (form) {var W, T;W=form.Weight.value*form.WeightUnit.options[form.WeightUnit.selectedIndex].value;T=form.Time.value/form.TimeUnit.options[form.TimeUnit.selectedIndex].value;form.Calories.value = Math.round(form.Activity.options[form.Activity.selectedIndex].value*W*T);7} 