/* 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.OrderForm.YogaBack1DVD.value;
  two = document.OrderForm.YogaBack2DVD.value;
  three = document.OrderForm.YogaBack12DVD.value;
  four = document.OrderForm.YogaMeditationChakras.value;
  five = document.OrderForm.ThreeDailyPracticesDVD.value;
  six = document.OrderForm.YogaClassPracticeDVD.value;
  seven = document.OrderForm.GrowingYoungerDVD.value;
  eight = document.OrderForm.Any4DVDs.value;
  nine = document.OrderForm.All6DVDs.value;
  ten = document.OrderForm.GrowingYoungerwithYogaCD.value;
  eleven = document.OrderForm.InStillnessIHealmySpineCD.value;
  twelve = document.OrderForm.GrowingYoungerwithYogaBook.value;
  twentytwo = document.OrderForm.MalabeedsRud.value;
  twentythree = document.OrderForm.MalabeedsSand.value;
  twentyfour = document.OrderForm.OMKeyring.value;
  twentyfive = document.OrderForm.Cards.value;
  document.OrderForm.total.value = (one * 19.95) + (two * 19.95) + (three * 29.95) + (four * 19.95) + (five * 19.95) + (six * 19.95) + (seven * 19.95) + (eight * 56.95) + (nine * 82.95) + (ten * 14.95) + (eleven * 14.95) + (twelve * 24) + (twentytwo * 0) + (twentythree * 0) + (twentyfour * 0) + (twentyfive * 5.95) + 7.00;
}
function stopCalc(){
  clearInterval(interval);
}


  