function cp_accept_shipping_policy() {
    if(document.getElementById("accept_shipping_policy").checked) {
	shippingMethod.save();
    }
    else {
        alert("Please click the accept shipping policy checkbox.");
    }
}

