// JavaScript Document
function repayInfo(action){if(action == "view"){$('div.infoBox').fadeIn('slow');}  else if (action == "hide"){$('div.infoBox').fadeOut('hide');}}

function amountInfo(action){if(action == "view"){$('div.infoBox').fadeIn('slow');}  else if (action == "hide"){$('div.infoBox').fadeOut('hide');}}

function displayInfo(infotype)
{
	if (infotype == "repay")
	{
		amountInfo('hide');
		document.getElementById('infoBox').innerHTML = "<iframe width='60%' height='520' src='http://www.financialservices.toyota.com.au/Calculator1/1,,,00.html'></iframe>";
		repayInfo('view')}
	else
	{
		repayInfo('hide');
		document.getElementById('infoBox').innerHTML = "<iframe width='60%' height='500' src='http://www.financialservices.toyota.com.au/Calculator2/1,,,00.html'></iframe>";
		amountInfo('view');
	}
}
