/* 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 startBoxCalc(){
  interval = setInterval("calc()",1);
}
function calc(){
  one = document.autoSumForm.mopt0_0.value;
  two = document.autoSumForm.mopt0_1.value;
  three = document.autoSumForm.mopt0_2.value;
  four = document.autoSumForm.mopt0_3.value;

  document.autoSumForm.totalBox.value = (one * 1) + (two * 1) + (three * 1) + (four * 1);
}
function stopBoxCalc(){
  clearInterval(interval);
}
