/* 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.mqty0.value;
  two = document.autoSumForm.mqty1.value;
  three = document.autoSumForm.mqty2.value;
  four = document.autoSumForm.mqty3.value;
  five = document.autoSumForm.mqty4.value;
  six = document.autoSumForm.mqty5.value; 
  seven = document.autoSumForm.mqty6.value;
  eight = document.autoSumForm.mqty7.value;
  nine = document.autoSumForm.mqty8.value; 
  ten = document.autoSumForm.mqty9.value;
  eleven = document.autoSumForm.mqty10.value;
  twelve = document.autoSumForm.mqty11.value;
  thirteen = document.autoSumForm.mqty12.value;
  fourteen = document.autoSumForm.mqty13.value;

  document.autoSumForm.totalBox.value = (one * 1) + (two * 1) + (three * 1) + (four * 1) + (five * 1) + (six * 1) + (seven * 1) + (eight * 1) + (nine * 1) + (ten * 1) + (eleven * 1) + (twelve * 1) + (thirteen * 1) + (fourteen * 1);
}
function stopCalc(){
  clearInterval(interval);
}
