//copyright belongs to jeremy steel. it is forbidden to copy, use or distribute any part of this code or design without the permission of jeremy steel


		
		function calcamount() 
		{ 
		//CONDITIONAL
	//USD 
		if (document.overview.currency2pay.value == 'USD')
		{
		document.overview.amount.value = 1060.00;
		document.overview.currency_code.value=document.overview.currency2pay.value
		
		
		}
		
				//AUSD
		
		else if (document.overview.currency2pay.value == 'AUD')
		{

		document.overview.amount.value = 1260.00;
		document.overview.currency_code.value=document.overview.currency2pay.value
		}
		
				
		
		//EURO
		else if (document.overview.currency2pay.value == 'EUR')
		{
		document.overview.amount.value = 740.00;
		document.overview.currency_code.value=document.overview.currency2pay.value
		}
		
		
		
		//GBP
		else if(document.overview.currency2pay.value == 'GBP')
		{

		document.overview.amount.value = 650.00;
		document.overview.currency_code.value=document.overview.currency2pay.value

		}
		
		}
		


		
				
	function checkfornochoice() 
		{ 
		
		if (document.overview.currency2pay.value == ' ' )
			{
			alert('You have not selected a currency');
			return false;			
			}
		
		 
		alert('You will now be taken to Paypal to complete your purchase');
		return true;


		}
	
	