/* This script and many more are available free online at The JavaScript Source :: http://javascript.internet.com Created by: Will Bontrager :: http://www.willmaster.com/ */ function FillBilling(f) { if(f.billingtoo.checked == true) { f.billing_name.value = f.shipping_name.value; f.billing_address.value = f.shipping_address.value; f.billing_country.value = f.shipping_country.value; f.billing_postalcode.value = f.shipping_postalcode.value; /* If more fields are used, just expand the parameters above to include the additional fields. */ } }