// JavaScript Document
function copydata()
{
	document.frm1.custShipFirstName.value = document.frm1.custBillFirstName.value
	document.frm1.custShipLastName.value = document.frm1.custBillLastName.value
	document.frm1.custShipCompName.value = document.frm1.custBillCompName.value
	document.frm1.custShipEmail.value = document.frm1.customerEmail.value
	document.frm1.custShipDept.value = document.frm1.custBillDept.value
	document.frm1.custShipPhone.value = document.frm1.custBillPhone.value
	document.frm1.custShipAddress1.value = document.frm1.custBillAddress1.value
	document.frm1.custShipAddress2.value = document.frm1.custBillAddress2.value
	document.frm1.custShipCity.value = document.frm1.custBillCity.value
	document.frm1.custShipCounty.value = document.frm1.custBillCounty.value
	document.frm1.custShipPhone.value = document.frm1.custBillPhone.value
	document.frm1.custShipPostCode.value = document.frm1.custBillPostCode.value
	document.frm1.custShipCountryCode.value = document.frm1.custBillCountryCode.value
	
}