function assignBillingFields()
{
	if (document.step2.CUSTOMER__SAMEASBILLING__0.checked==1)
	{
			document.step2.CUSTOMER__MAILADDRESS1__0.value= document.step2.CUSTOMER__ADDRESS1__0.value;
			document.step2.CUSTOMER__MAILADDRESS2__0.value= document.step2.CUSTOMER__ADDRESS2__0.value;
			document.step2.CUSTOMER__MAILCITY__0.value= document.step2.CUSTOMER__CITY__0.value;
			document.step2.CUSTOMER__MAILPOSTCODE__0.value= document.step2.CUSTOMER__POSTCODE__0.value;
			document.step2.CUSTOMER__MAILSTATE__0.value= document.step2.CUSTOMER__STATE__0.value;
			document.step2.CUSTOMER__MAILCOUNTRYID__0.selectedIndex= document.step2.CUSTOMER__COUNTRYID__0.selectedIndex;
	}
}
function NotSame()
{
	try
	{
		eval("document.step2.CUSTOMER__SAMEASBILLING__0.checked=0");
	}
	catch(e)
	 {
	}
  
}
 function CurrConv(amount)
 {
      CurrencyWindow = window.open ('http://www.xe.com/pca/input.cgi?Amount=' + amount + '&From=AUD', 'CurrencyWindow', 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,height=135,width=550')
      CurrencyWindow.focus();
  }