/* 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.Calculator.Q1.value;
  two = document.Calculator.Q2.value;
  three = document.Calculator.Q3.value;
  four = document.Calculator.Q4.value;
  five = document.Calculator.Q5.value;
  six = document.Calculator.Q6.value;
  seven = document.Calculator.Q7.value;
  document.Calculator.Answer.value = (one * 1) + (two * 1) + (three * 1) + (four * 1) + (five * 1) + (six * 1) + (seven * 1);
}
function stopCalc(){
  clearInterval(interval);
}
