
/*{SOFICUS_LICENCE_AGREEMENT}*/

function copyAddress()
{
	if (document.formCheckout.idSameAsBilling.checked)
	{
		document.formCheckout.idCompanySA.value = document.formCheckout.idCompany.value;
		document.formCheckout.idCompanySA.disabled = true;

		document.formCheckout.idFirstNameSA.value = document.formCheckout.idFirstName.value;
		document.formCheckout.idFirstNameSA.disabled = true;
		
		document.formCheckout.idLastNameSA.value = document.formCheckout.idLastName.value;
		document.formCheckout.idLastNameSA.disabled = true;

		document.formCheckout.fldAddress1SA.value = document.formCheckout.fldAddress1.value;
		document.formCheckout.fldAddress1SA.disabled = true;

		document.formCheckout.fldAddress2SA.value = document.formCheckout.fldAddress2.value;
		document.formCheckout.fldAddress2SA.disabled = true;

		document.formCheckout.fldAddress3SA.value = document.formCheckout.fldAddress3.value;
		document.formCheckout.fldAddress3SA.disabled = true;
		
		document.formCheckout.fldTownSA.value = document.formCheckout.fldTown.value;
		document.formCheckout.fldTownSA.disabled = true;

		document.formCheckout.fldCountySA.value = document.formCheckout.fldCounty.value;
		document.formCheckout.fldCountySA.disabled = true;

		document.formCheckout.fldPostcodeSA.value = document.formCheckout.fldPostcode.value;
		document.formCheckout.fldPostcodeSA.disabled = true;

		document.formCheckout.fldCountrySA.value = document.formCheckout.fldCountry.value;
		document.formCheckout.fldCountrySA.disabled = true;
	}
	else
	{
		document.formCheckout.idCompanySA.disabled = false;
		document.formCheckout.idFirstNameSA.disabled = false;
		document.formCheckout.idLastNameSA.disabled = false;
		document.formCheckout.fldAddress1SA.disabled = false;
		document.formCheckout.fldAddress2SA.disabled = false;
		document.formCheckout.fldAddress3SA.disabled = false;
		document.formCheckout.fldTownSA.disabled = false;
		document.formCheckout.fldCountySA.disabled = false;
		document.formCheckout.fldPostcodeSA.disabled = false;
		document.formCheckout.fldCountrySA.disabled = false;
	}

}
