/* First Block is where the info is going.  2nd Block is where it's coming from. */

function CopyToPickup(Which) {
Which.mail_address1.value = Which.phys_address1.value;
Which.mail_address2.value = Which.phys_address2.value;
Which.mail_city.value     = Which.phys_city.value;
Which.mail_state.value    = Which.phys_state.value;
Which.mail_zip.value      = Which.phys_zip.value;
}
