function init()
{
  document.autoSumForm.reset();
  
  }




function startCalc(){
  interval = setInterval("calc()",1);
}
function calc(){
  two = document.autoSumForm.secondBox.value; 
  four = document.autoSumForm.fourBox.value; 
  five = document.autoSumForm.fiveBox.value; 
  six = document.autoSumForm.sixBox.value; 
  seven = document.autoSumForm.sevenBox.value; 
  eight = document.autoSumForm.eightBox.value; 
  nine = document.autoSumForm.nineBox.value; 
  ten = document.autoSumForm.tenBox.value; 
  eleven = document.autoSumForm.elevenBox.value; 
  twelve = document.autoSumForm.twelveBox.value; 
  a = document.autoSumForm.aBox.value; 
  b = document.autoSumForm.bBox.value;
  c = document.autoSumForm.cBox.value;
  d = document.autoSumForm.dBox.value;
  e = document.autoSumForm.eBox.value;
  f = document.autoSumForm.fBox.value;
  g = document.autoSumForm.gBox.value;
  h = document.autoSumForm.hBox.value;
  i = document.autoSumForm.iBox.value;
  j = document.autoSumForm.jBox.value;
  k = document.autoSumForm.kBox.value;
  l = document.autoSumForm.lBox.value;
  m = document.autoSumForm.mBox.value;
  n = document.autoSumForm.nBox.value;
  o = document.autoSumForm.oBox.value;
  p = document.autoSumForm.pBox.value;
  r = document.autoSumForm.rBox.value;
  s = document.autoSumForm.sBox.value;
  t = document.autoSumForm.tBox.value;
  u = document.autoSumForm.uBox.value;
  w = document.autoSumForm.wBox.value;
  z = document.autoSumForm.zBox.value;
  aa = document.autoSumForm.aaBox.value;
  bb = document.autoSumForm.bbBox.value;
  cc = document.autoSumForm.ccBox.value;
  dd = document.autoSumForm.ddBox.value;
  ee = document.autoSumForm.eeBox.value;
  ff = document.autoSumForm.ffBox.value;
  gg = document.autoSumForm.ggBox.value;
  hh = document.autoSumForm.hhBox.value;

  
document.autoSumForm.thirdBox.value = (two * 1) + (four * 1) + (five * 1) + (six * 1) + (seven * 1) + (eight * 1) + (nine * 1) + (ten * 1) + (eleven * 1) + (twelve * 1) + (a * 1) + (b * 1) + (c * 1) + (d * 1) + (e * 1) + (f * 1) + (g * 1) + (h * 1) + (i * 1) + (j * 1) + (k * 1) + (l * 1) + (m * 1)  + (n * 1)  + (o * 1)  + (p * 1)  + (r * 1)  + (s * 1)  + (t * 1)  + (u * 1)  + (w * 1)  + (z * 1)  + (aa * 1)  + (bb * 1)  + (cc * 1)  + (dd * 1)  + (ee * 1) + (ff * 1) + (gg * 1) + (hh * 1) ;
}

function stopCalc(){
  clearInterval(interval);
}

