/* 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 startCalcHotPink(){
  interval = setInterval("calcHotPink()",1);
}
function calcHotPink(){
  one = document.FieldDayOrder.Hot_Pink_YS.value;
  two = document.FieldDayOrder.Hot_Pink_YM.value; 
  three = document.FieldDayOrder.Hot_Pink_YL.value; 
  four = document.FieldDayOrder.Hot_Pink_S.value; 
  five = document.FieldDayOrder.Hot_Pink_M.value; 
  six = document.FieldDayOrder.Hot_Pink_L.value; 
  seven = document.FieldDayOrder.Hot_Pink_XL.value; 
  eight = document.FieldDayOrder.Hot_Pink_2XL.value; 
  nine = document.FieldDayOrder.Hot_Pink_3XL.value; 
  document.FieldDayOrder.Hot_Pink_Total.value = (one * 1) + (two * 1) + (three * 1) + (four * 1) + (five * 1) + (six * 1) + (seven * 1) + (eight * 1) + (nine * 1);
}
function stopCalcHotPink(){
  clearInterval(interval);
}

