function eatingless()
{
var yourweight = document.eatless.weight.value



var cut250lp = Math.round(yourweight * .5)
document.eatless.cutalp.value = cut250lp

var cut250hp = Math.round(yourweight * 1)
document.eatless.cutahp.value = cut250hp

var cutalptot2 = Math.round(yourweight * .4/6)
document.eatless.cutalptot.value = cutalptot2

var cutahptot2 = Math.round(yourweight * .8/6)
document.eatless.cutahptot.value = cutahptot2

}
