/* 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 startCalc2(){
  interval = setInterval("calc2()",1);
}
function calc2(){
	
  one =0;
  two =0;
  three =0;
  four =0;
  five =0;
  
  one = document.satislar.urun_42.value;
  two = document.satislar.urun_250.value;
  three = document.satislar.urun_500.value;
  four = document.satislar.urun_100.value;
  five = document.satislar.urun_11.value;
  toplam = (one * 10) + (two * 5) + (three * 12) + (four * 4) + (five * 4.95);
  ftoplam = toplam.toFixed(3);
  document.satislar.urunler_toplam.value = ftoplam;
}
function stopCalc2(){
  clearInterval(interval);
}

