/* 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.v1a.value;
  two = document.autoSumForm.v2a.value;
  three = document.autoSumForm.v3a.value;
  four = document.autoSumForm.v4a.value;
  five = document.autoSumForm.v5a.value;
  six = document.autoSumForm.v6a.value;
  seven = document.autoSumForm.v7a.value;
  eight = document.autoSumForm.v8a.value;
  nine = document.autoSumForm.v9a.value;
  ten = document.autoSumForm.v10a.value;
  eleven = document.autoSumForm.v11a.value;
  twelve = document.autoSumForm.v12a.value;
  thirteen = document.autoSumForm.v13a.value;
  fourteen = document.autoSumForm.v14a.value;
  fifteen = document.autoSumForm.v15a.value;
  document.autoSumForm.vitalitytotal.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) + (fifteen * 1);
  
   
 }
function stopCalc(){
  clearInterval(interval);
}
