/* 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 startCalc3(){
  interval = setInterval("calc3()",1);
}
function calc3(){
	
  one =0;
  two =0;
  three =0;
  four =0;
  five =0;
  
  one = document.hediyeler.hediye_1.value;
  two = document.hediyeler.hediye_2.value;
  three = document.hediyeler.hediye_3.value;
  four = document.hediyeler.hediye_4.value;
  five = document.hediyeler.hediye_5.value;
  toplam = (one * 1) + (two * 2) + (three * 3) + (four * 4) + (five * 8);
  document.hediyeler.hediye_toplam.value = toplam;
}
function stopCalc3(){
  clearInterval(interval);
}

