
	function putPrice(val, type)
	{
		if (type == 2)
		{
			document.getElementById('amount').innerHTML = document.getElementById('v' + val).value;
		}
		else if (type == 1)
		{
			document.getElementById('amount').innerHTML = "Your transaction total is &pound;" + document.getElementById('v' + val).value + ", however today we only require a deposit payment of <strong>20%</strong>. ";
		}
	}

