function FigureIBM(form, feet, inches) {

 TotalInches = eval(feet*12) + eval(inches)


	if (TotalInches == 60) {
		form.calcval.value = 106;
		    	}
	if (TotalInches > 60) {
		form.calcval.value = 106 + (6 * inches);
		    	}
	if (TotalInches == 72) {
		form.calcval.value = 178;
		    	}
	if (TotalInches > 72) {
		form.calcval.value = 178 + (6 * inches);
		    	}
	if (TotalInches == 48) {
		form.calcval.value = 76;
		    	}
	if (TotalInches < 60) {
		form.calcval.value = 76 + (2.5 * inches);
		    	}

}


function FigureIBW(form, feet, inches) {

 TotalInches = eval(feet*12) + eval(inches)


	if (TotalInches == 60) {
		form.calcval.value = 100;
		    	}
	if (TotalInches > 60 < 72) {
		form.calcval.value = 100 + (5 * inches);
		    	}
	if (TotalInches == 72) {
		form.calcval.value = 160;
		    	}
	if (TotalInches > 72) {
		form.calcval.value = 160 + (5 * inches);
		    	}
	if (TotalInches == 48) {
		form.calcval.value = 70;
		    	}
	if (TotalInches < 60) {
		form.calcval.value = 70 + (2.5 * inches);
		    	}

}

function FigureBURN(form, pounds, minutes, activity)
{
 Weight   = (pounds / 2.2)
 Time     = minutes
 activity = document.BURN.activity.options[document.BURN.activity.selectedIndex].value
 form.calcval.value = (Math.round(Weight * activity)*(Time / 60))
}

function FigureBEE1(form, feet, inches, pounds, years) {
 TotalInches = eval(feet*12) + eval(inches)
 Centis      = TotalInches * 2.54
 Kilos       = pounds/2.2
 Age         = years
 Weight      = 655 + (9.6 * Kilos)
 Height      = 1.7 * Centis
 Ages        = 4.7 * Age
 var activity = document.bee.activity.options[document.bee.activity.selectedIndex].value

 form.calcval.value = (Math.round(Weight + Height - Ages) * activity)
}

function FigureBEE2(form, feet, inches, pounds, years, activity) {
 TotalInches = eval(feet*12) + eval(inches)
 Centis      = TotalInches * 2.54
 Kilos       = pounds/2.2
 Age         = years
 Weight      = 66 + (13.7 * Kilos)
 Height      = 5 * Centis
 Ages        = 6.8 * Age
var activity = document.bee.activity.options[document.bee.activity.selectedIndex].value

 form.calcval.value = (Math.round(Weight + Height - Ages) * activity)
}

function FigureBMI(form, feet, inches, pounds) {
 TotalInches = eval(feet*12) + eval(inches)
 Meters      = TotalInches/39.36
 Kilos       = pounds/2.2
 Square      = Meters * Meters
 form.calcval.value = (Math.round(Kilos/Square))
}
