/* 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.cc_address.value = f.address.value;
    f.cc_city.value = f.city.value;
    f.cc_state.value = f.state.value;
    f.cc_zip.value = f.zip.value;
    /* If more fields are used, just expand the parameters
       above to include the additional fields. */

  }
}