<!-- Paste this code into an external JavaScript file named: copyFields.js  -->

/* 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.sfirst.value = f.bfirst.value;
    f.slast.value = f.blast.value;
    f.saddress.value = f.baddress.value;
    f.scity.value = f.bcity.value;
    f.sstate.value = f.bstate.value;
    f.szip.value = f.bzip.value;
    f.scountry.value = f.bcountry.value;
  }
}
