/* This script and many more are available free online at
The JavaScript Source!! http://javascript.internet.com
Created by: Jim Stiles | www.jdstiles.com */
function startCalc(){
  interval = setInterval("calc()",1);
}
function calc(){
  one = document.autoSumForm.tithe.value;
  two = document.autoSumForm.apostolicman.value;
  three = document.autoSumForm.homemissions.value; 
  four = document.autoSumForm.ladiesministry.value;
  five = document.autoSumForm.mediaministry.value;
  six = document.autoSumForm.sundayschool.value; 
  seven = document.autoSumForm.youth.value;
  eight = document.autoSumForm.other_amount.value;
  document.autoSumForm.totalamount.value = (one * 1) + (two * 1) + (three * 1) + (four * 1) + (five * 1) + (six * 1) + (seven * 1) + (eight * 1);
}
function stopCalc(){
  clearInterval(interval);
}
