function SameAsBilling(checkout) 
{
	if (checkout.copy.checked) 
	{
		checkout.x_ship_to_first_name.value = checkout.x_first_name.value;
		checkout.x_ship_to_last_name.value = checkout.x_last_name.value;
		checkout.x_ship_to_company.value = checkout.x_company.value;
		checkout.x_ship_to_address.value = checkout.x_address.value;
		checkout.x_ship_to_city.value = checkout.x_city.value;
		checkout.x_ship_to_state.selectedIndex = checkout.x_state.selectedIndex;
		checkout.x_ship_to_zip.value = checkout.x_zip.value;
		checkout.x_ship_to_country.selectedIndex = checkout.x_country.selectedIndex;

	}
}

