function copyBillTo(theCheckbox) {
	if(!theCheckbox.checked) {
		return;
	}
	var theForm = document.forms[1];
	theForm.ShipFirstName.value =						theForm.BillFirstName.value;
	theForm.ShipLastName.value =						theForm.BillLastName.value;
	theForm.ShipEmail.value = 							theForm.BillEmail.value;
	theForm.ShipPhone.value = 							theForm.BillPhone.value;
	theForm.ShipFax.value = 								theForm.BillFax.value;
	theForm.ShipCompany.value = 						theForm.BillCompany.value;
	theForm.ShipAddress.value = 						theForm.BillAddress.value;
	theForm.ShipCity.value = 								theForm.BillCity.value;
	theForm.ShipStateSelect.selectedIndex = theForm.BillStateSelect.selectedIndex;
	theForm.ShipState.value = 							theForm.BillState.value;
	theForm.ShipZip.value = 								theForm.BillZip.value;
	theForm.ShipCountry.selectedIndex = 		theForm.BillCountry.selectedIndex;
}

function copyBillToAcnt(theCheckbox) {
	if(!theCheckbox.checked) {
		return;
	}
	var theForm = document.forms[1];
	theForm.Customer_ShipFirstName.value =						theForm.Customer_BillFirstName.value;
	theForm.Customer_ShipLastName.value =							theForm.Customer_BillLastName.value;
	theForm.Customer_ShipEmail.value = 								theForm.Customer_BillEmail.value;
	theForm.Customer_ShipPhone.value = 								theForm.Customer_BillPhone.value;
	theForm.Customer_ShipFax.value = 									theForm.Customer_BillFax.value;
	theForm.Customer_ShipCompany.value = 							theForm.Customer_BillCompany.value;
	theForm.Customer_ShipAddress.value = 							theForm.Customer_BillAddress.value;
	theForm.Customer_ShipCity.value = 								theForm.Customer_BillCity.value;
	theForm.Customer_ShipStateSelect.selectedIndex =	theForm.Customer_BillStateSelect.selectedIndex;
	theForm.Customer_ShipState.value = 								theForm.Customer_BillState.value;
	theForm.Customer_ShipZip.value = 									theForm.Customer_BillZip.value;
	theForm.Customer_ShipCountry.selectedIndex = 			theForm.Customer_BillCountry.selectedIndex;
}
