/* 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.overnemen.checked == true) {
    f.Adres_woning.value = f.Adres.value;
    f.Huisnummer_woning.value = f.Huisnummer.value; 
    f.Postcode_woning.value = f.Postcode.value;
    f.Plaats_woning.value = f.Plaats.value;
    /* f.billingcity.value = f.shippingcity.value;   */
    /* If more fields are used, just expand the parameters
       above to include the additional fields. */
  }
}

