<!--
function changecurrency1(currency)
{
if (currency == 'GBP')
{
document.ppform1.amount.value = '18';
}
 
if (currency == 'CAD')
{
document.ppform1.amount.value = '41';
}
 
if (currency == 'JPY')
{
document.ppform1.amount.value = '3386';
}
 
if (currency == 'EUR')
{
document.ppform1.amount.value = '25';
}
 
if (currency == 'USD')
{
document.ppform1.amount.value = '29';
}
 
}
function changecurrency2(currency)
{
if (currency == 'GBP')
{
document.ppform2.amount.value = '31';
}
 
if (currency == 'CAD')
{
document.ppform2.amount.value = '68';
}
 
if (currency == 'JPY')
{
document.ppform2.amount.value = '5721';
}
 
if (currency == 'EUR')
{
document.ppform2.amount.value = '43';
}
 
if (currency == 'USD')
{
document.ppform2.amount.value = '49';
}
 
}
function changecurrency3(currency)
{
if (currency == 'GBP')
{
document.ppform3.amount.value = '43';
}
 
if (currency == 'CAD')
{
document.ppform3.amount.value = '96';
}
 
if (currency == 'JPY')
{
document.ppform3.amount.value = '8057';
}
 
if (currency == 'EUR')
{
document.ppform3.amount.value = '60';
}
 
if (currency == 'USD')
{
document.ppform3.amount.value = '69';
}
 
}

//-->
