// JavaScript Document by Richard Bowles

function FillBilling(f) {
  if(f.billingtoo.checked == true) {
    f.billingfirstname.value = f.shippingfirstname.value;
    f.billingcity.value = f.shippingcity.value;
	f.billinglastname.value = f.lastname.value;
	f.billingstreetaddress.value = f.streetaddress.value;
	f.billingstate.value = f.state.value;
	f.billingzip.value = f.zip.value;
	
	
	
    /* If more fields are used, just expand the parameters
       above to include the additional fields. */
  }
}
