// JavaScript Document
/* 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(){
  calc();
}
function calc(){
	one = document.getElementById("buttons1").value;
	two = document.getElementById("buttons2").value;
	three = document.getElementById("buttons3").value;
	four = document.getElementById("buttons4").value;
	five = document.getElementById("buttons5").value;
	six = document.getElementById("buttons6").value;
  document.autoSumForm.totalBox.value = (one * 1) + (two * 1) + (three * 1) + (four * 1) + (five * 1) + (six * 1);
}
function stopCalc(){
  clearInterval(interval);
}
//function setSingleDay(){
//  if(interval);
//}

