// JavaScript Document

/* 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 FillBorrower(f) {
  if(f.coborrower.checked == true) {
    f.CoAddress.value = f.Address.value;
    f.CoCity.value = f.City.value;
	f.CoState.value = f.State.value;
	f.CoZip.value = f.Zip.value;
	f.CoPhone.value = f.Phone.value;
  }
}
