/* 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.Address1.value = f.userAddress1Ship.value;
	f.City.value = f.userCityShip.value;
	f.zip.value = f.userZipShip.value;
	f.state.value = f.userStateShip.value;
	f.Address2.value = f.userAddress2ship.value;	
    /* If more fields are used, just expand the parameters
       above to include the additional fields. */
  }
}


