// JavaScript Document
// You are not reading this, if you are shame on you.
function CopyFields() {
document.checkout.ship_fname.value = document.checkout.bill_fname.value;
document.checkout.ship_lname.value = document.checkout.bill_lname.value;
document.checkout.ship_address1.value = document.checkout.bill_address1.value;
document.checkout.ship_address2.value = document.checkout.bill_address2.value;
document.checkout.ship_city.value = document.checkout.bill_city.value;
document.checkout.ship_state.value = document.checkout.bill_state.value;
document.checkout.ship_country.selectedIndex = document.checkout.bill_country.selectedIndex;
document.checkout.ship_zip.value = document.checkout.bill_zip.value;
document.checkout.ship_phone.value = document.checkout.bill_phone.value;
}