// Changes the shipping information to be the same as the billing
// params: none
// returns: none
function changeShippingInfo() {
	// check if it has been checked
	var checkBox = document.billing.same_as_billing

	if (checkBox.checked == true) {
		// make the shipping same as the billing
		document.billing.ship_to_organization.value = document.billing.organization.value;
		document.billing.x_ship_to_first_name.value = document.billing.x_first_name.value;
		document.billing.x_ship_to_last_name.value = document.billing.x_last_name.value;
		document.billing.x_ship_to_address.value = document.billing.x_address.value;
		document.billing.x_ship_to_city.value = document.billing.x_city.value;
		document.billing.x_ship_to_state.value = document.billing.x_state.value;
		document.billing.x_ship_to_zip.value = document.billing.x_zip.value;
		document.billing.x_ship_to_email.value = document.billing.x_email.value;
		//document.billing.x_ship_to_country.value = document.billing.x_country.value;

	} else {
		// clear the form
		document.billing.ship_to_organization.value = "";
		document.billing.x_ship_to_first_name.value = ""; 
		document.billing.x_ship_to_last_name.value = "";
		document.billing.x_ship_to_address.value = "";
		document.billing.x_ship_to_city.value = "";
		document.billing.x_ship_to_state.value = "";
		document.billing.x_ship_to_zip.value = "";
		document.billing.x_ship_to_email.value = "";
		//document.billing.x_ship_to_country.value = "";

	}
}
