function FigureFIBW(form, feet, inches) {

var rvalue = true;
if ( (feet < 3) || (feet > 7)  || (inches < 0) || (inches >= 12) || inches== '' ) {
alert ("Invalid data.  Please enter values for both feet and inches - enter 0 inches if necessary.");
rvalue = false;
}

if (rvalue) {

TotalInches = eval(feet*12) + eval(inches)

	if (TotalInches == 60) {
		form.fcalcval.value = 100;
		    	}
	if (TotalInches > 60 < 72) {
		form.fcalcval.value = 100 + (5 * inches);
		    	}
	if (TotalInches == 72) {
		form.fcalcval.value = 160;
		    	}
	if (TotalInches > 72) {
		form.fcalcval.value = 160 + (5 * inches);
		    	}
	if (TotalInches == 48) {
		form.fcalcval.value = 70;
		    	}
	if (TotalInches < 60) {
		form.fcalcval.value = 70 + (2.5 * inches);
		    	}
}
}