how to add the sum of them all
<script type="text/javascript">
function AddGuestCALC(){
newValue = (parseInt(document.formcheck.Price.value) * parseInt(document.formcheck.Guest.value));
document.formcheck.AddGuestTOTAL.value = newValue;
}
function MenuChange(){
newValue = parseInt(document.formcheck.Menu.value.asInt);
document.formcheck.Price.value = newValue;
}
function LechonCALC(){
newValue = parseInt(document.formcheck.Lechon.value) * 6500;
document.formcheck.LechonTOTAL.value = newValue;
}
function AmmenitiesCALC(){
newValue = parseInt(document.formcheck.Total.value) + 10000;
document.formcheck.Total.value = newValue;
}
function BridalCALC(){
newValue = parseInt(document.formcheck.Bridal.value) * 1500;
document.formcheck.BridalTOTAL.value = newValue;
}
function CocktailCALC(){
newValue = parseInt(document.formcheck.Cocktail.value) * 5000;
document.formcheck.CocktailTOTAL.value = newValue;
}
function SaladCALC(){
newValue = parseInt(document.formcheck.Salad.value) * 5000;
document.formcheck.SaladTOTAL.value = newValue;
}
function DessertCALC(){
newValue = parseInt(document.formcheck.Dessert.value) * 5000;
document.formcheck.DessertTOTAL.value = newValue;
}
function FishCALC(){
newValue = parseInt(document.formcheck.Fish.value) * 4500;
document.formcheck.FishTOTAL.value = newValue;
}
function LightsCALC(){
newValue = parseInt(document.formcheck.Lights.value) * 3000;
document.formcheck.LightsTOTAL.value = newValue;
}
function FlameCALC(){
newValue = parseInt(document.formcheck.Flame.value) * 3000;
document.formcheck.FlameTOTAL.value = newValue;
}
function EventLCALC(){
newValue = parseInt(document.formcheck.EventL.value) * 3500;
document.formcheck.EventLTOTAL.value = newValue;
}
function CorkageCALC(){
newValue = parseInt(document.formcheck.Corkage.value) * 6500;
document.formcheck.CorkageTOTAL.value = newValue;
}
</script>