/* 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.honey16x25.value * 40;
  two = document.autoSumForm.Len20x25x5.value * 40; 
  three = document.autoSumForm.Len20x26x3.value * 40; 
  four = document.autoSumForm.Len20x26x4.value * 40; 
  five = document.autoSumForm.Len16x26x3.value * 40; 
  six = document.autoSumForm.Apr10.value * 20; 
  seven = document.autoSumForm.Apr12.value * 20; 
  eight = document.autoSumForm.Apr35.value * 20;
  nine = document.autoSumForm.Apr201.value * 40; 
  ten = document.autoSumForm.Apr401.value * 40;
  eleven = document.autoSumForm.honey20x25.value * 40;
  document.autoSumForm.Total.value = '$' + (one + two + three + four + five + six + seven + eight + nine + ten + eleven);
}
function stopCalc(){
  clearInterval(interval);
}
