<!-- 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 Fillform(f) {
  if(f.brideeadd.checked == true) {
    f.Grooms_Address.value = f.Brides_Address.value;
    /* If more fields are used, just expand the parameters
       above to include the additional fields. */
  }
}

