/*
//:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
//	FUNCTION	getTotal()
//	PARAMS		interestType	::	1 => TRACTOR, 2	=> STANDARD
//				pris			::	Price (min)
//				indbytte		::	Indbytte (modregnes)
//	AUTHOR		Sune Lundby [SL]
//	DATE		July 12th 2006
//:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
*/
function getTotal(interestType, pris, indbytte, udbetaling) {

	var randNum = Math.random()*370;

	//
	// GET TOTAL...
	new Ajax.Updater(
					$('total'),
					myBasePath + '/_ajax/_scripts/get_total.php?rand=' + randNum, {
					method: 'post',
					parameters: 'interestType=' + interestType + '&pris=' + $(pris).value + '&indbytte=' + $(indbytte).value,
					asynchronous: true }
					);

	//
	// GET STIFTPROV...
	new Ajax.Updater(
					$('stiftProv'),
					myBasePath + '/_ajax/_scripts/get_stiftprov.php?rand=' + randNum, {
					method: 'post',
					parameters: 'interestType=' + interestType + '&pris=' + $(pris).value + '&indbytte=' + $(indbytte).value,
					asynchronous: true }
					);

	//
	// GET UDBETALING...
	new Ajax.Updater(
					$('udbetaling'),
					myBasePath + '/_ajax/_scripts/get_udbetaling.php?rand=' + randNum, {
					method: 'post',
					parameters: 'interestType=' + interestType + '&pris=' + $(pris).value + '&indbytte=' + $(indbytte).value,
					asynchronous: true }
					);

	//
	// GET FINANSIERING...
	new Ajax.Updater(
					$('finansieringTotal'),
					myBasePath + '/_ajax/_scripts/get_finansiering.php?rand=' + randNum, {
					method: 'post',
					parameters: 'interestType=' + interestType + '&pris=' + $(pris).value + '&indbytte=' + $(indbytte).value,
					asynchronous: true }
					);

	//
	// GET THE REST...
	new Ajax.Updater(
					$('therest'),
					myBasePath + '/_ajax/_scripts/get_therest.php?rand=' + randNum, {
					method: 'post',
					parameters: 'interestType=' + interestType + '&pris=' + $(pris).value + '&indbytte=' + $(indbytte).value,
					asynchronous: true }
					);

	$('ydelse').innerHTML = "";
	$('lobetid').selectedIndex = 0;

} // END FUNCTION getTotal()...
//:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

/*
//:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
//	FUNCTION	getYdelse()
//	PARAMS		interestType	::	1 => TRACTOR, 2	=> STANDARD
//				pris			::	Price (min)
//				indbytte		::	Indbytte (modregnes)
//				lobetid			::	Løbetid i år
//	AUTHOR		Sune Lundby [SL]
//	DATE		July 12th 2006
//:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
*/
function getYdelse(interestType, pris, indbytte, udbetaling, lobetid) {

	var randNum = Math.random()*370;

	//
	// GET TOTAL...
	new Ajax.Updater(
					$('ydelse'),
					myBasePath + '/_ajax/_scripts/get_ydelse.php?rand=' + randNum, {
					method: 'post',
					parameters: 'interestType=' + interestType + '&pris=' + $(pris).value + '&indbytte=' + $(indbytte).value + '&lobetid=' + $(lobetid).value,
					asynchronous: true }
					);

} // END FUNCTION getYdelse()...
//:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
