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

function CopyToPickup(Which) {
Which.s_fname.value   = Which.fname.value;
Which.s_lname.value   = Which.lname.value;
Which.s_address.value = Which.address.value;
Which.s_city.value    = Which.city.value;
Which.s_state.value   = Which.state.value;
Which.s_zip.value     = Which.zip.value;
Which.s_phone.value   = Which.phone.value;
}

