function startCalc(){
  interval = setInterval("calc()",1);
  
}

	

function calc(){
  a = document.autoSumForm.iResQty.value;
  b = document.autoSumForm.iGenQty.value;
  c = document.autoSumForm.iStuQty.value;
  d = document.autoSumForm.iiResQty.value;
  e = document.autoSumForm.iiGenQty.value;
  f = document.autoSumForm.iiStuQty.value;
  g = document.autoSumForm.brunchQty.value;
  h = document.autoSumForm.brunchFiveQty.value;
  i = document.autoSumForm.donations.value;
  j = document.autoSumForm.individual.value;
  k = document.autoSumForm.white.value;
  l = document.autoSumForm.silver.value;
  m = document.autoSumForm.gold.value;
  n = document.autoSumForm.purple.value;
  if (a + b + c + d + e + f + g + h == false) {
	  

  document.autoSumForm.TotalAmtDue.value = (j * 75) + (k * 150) + (l * 250) + (m * 500) + (n * 750); 
  }
  
  else {
	  document.autoSumForm.TotalAmtDue.value = (a * 8) + (b * 7) + (c * 5) + (d * 16) + (e * 14) + (f * 10) + (g * 15) + (h * 75) + .5 + (j * 75) + (k * 150) + (l * 250) + (m * 500) + (n * 750);
  }

  
 }
  



function stopCalc(){
  clearInterval(interval);
}

// Java Document