﻿
function calc6(money06){

	if (money06.sendy.value !=""){	
	wt = 20;

	tts01 = parseInt(money06.todayy.value,10) - 3;
	tts02 = parseInt(money06.todayy.value,10) - 1.5;
	tts03 = parseInt(money06.todayy.value,10) - 1;
	tts04 = parseInt(money06.todayy.value,10) - 0.25;

	money06.dhcash.value = Math.round( parseInt(money06.sendy.value,10) / tts01);
	money06.dtc0.value =Math.round(parseInt(money06.sendy.value,10) * 1.0025 / tts02);

	money06.dtc2.value = Math.round(parseInt(money06.sendy.value,10) * 1.0125 / tts02);


	money06.dwt4.value = Math.round( parseInt(money06.sendy.value,10) / tts02) + wt;


	money06.dwt5.value = Math.round( parseInt(money06.sendy.value,10) / tts03) + wt;

	money06.dwt6.value = Math.round( parseInt(money06.sendy.value,10) / tts04) + 25;



	money06.dmo1.value = Math.round( parseInt(money06.sendy.value,10) / tts02) + Math.ceil((parseInt(money06.sendy.value,10) / tts02) / 700) * 3.5;



	money06.dpaypal.value = Math.round( parseInt(money06.sendy.value,10) / tts01);

 	}
}


