// JavaScript to add totals for online Giving

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!-- Created by: www.jdstiles.com -->
<!-- Begin
function startCalc(){
  interval = setInterval("calc()",1);
}
function calc(){
  one = document.autoSumForm.give1Amt.value;
  two = document.autoSumForm.give2Amt.value;
  three = document.autoSumForm.give3Amt.value;
  four = document.autoSumForm.give4Amt.value; 
  document.autoSumForm.totalgiving.value = (one * 1) + (two * 1) + (three * 1) + (four * 1);
}
function stopCalc(){
  clearInterval(interval);
}
//  End -->

