<!--
function body_load() {
 document.form.same_as_billing.value =	0;
}

function address_onchange() {
 if (document.form.same_as_billing.checked == true) {
  document.form.shipping_address.value =document.form.address.value;
 }
}

function address2_onchange() {
 if (document.form.same_as_billing.checked == true) {
  document.form.shipping_address2.value =document.form.address2.value;
 }
}

function city_onchange() {
 if (document.form.same_as_billing.checked == true) {
  document.form.shipping_city.value =document.form.city.value;
 }
}

function state_onchange() {
 if (document.form.same_as_billing.checked == true) {
    document.form.shipping_state.selectedIndex=document.form.state.selectedIndex;
 }
}

function zip_onchange() {
 if (document.form.same_as_billing.checked == true) {
    document.form.shipping_zip.value =document.form.zip.value;
 }
}

function same_onclick(f) {
 var sign;
 sign=f.value;
 if (document.form.same_as_billing.checked == true){
    sign="on";
    }
 else{sign="off"}
 if (sign=="on" )
 {
    document.form.shipping_address.value =document.form.address.value;
    document.form.shipping_address2.value =document.form.address2.value;
    document.form.shipping_city.value =document.form.city.value;
    document.form.shipping_zip.value =document.form.zip.value ;
    document.form.shipping_state.selectedIndex =document.form.state.selectedIndex;
 } ;

 if (sign=="off" )
 {
    document.form.shipping_address.value =""
    document.form.shipping_address2.value =""
    document.form.shipping_city.value =""
    document.form.shipping_zip.value ="" ;
 }
}

//-->