/* 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.myform.lv_loaf.value;
  two = document.myform.lv_baguette.value; 
  three = document.myform.lv_turtle.value; 
  four = document.myform.lv_shipping.value;
  myTotal = (one * 16) + (two * 16) + (three * 16) + (four * 1);
  document.myform.lv_total.value = "$" + myTotal + ".00";
}
function stopCalc(){
  clearInterval(interval);
}
