/* 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.Billing_Same.checked == true) {
    f.Billing_First_Name.value = f.Contact_First_Name.value;
    f.Billing_Last_Name.value = f.Contact_Last_Name.value;
	f.Billing_Address1.value = f.Contact_Address1.value;
	f.Billing_Address2.value = f.Contact_Address2.value;
	f.Billing_City.value = f.Contact_City.value;
	f.Billing_Zipcode.value = f.Contact_Zipcode.value;
	f.Billing_Phone_Number.value = f.Contact_Phone_Number.value;
	f.Billing_Work_Number.value = f.Contact_Work_Number.value;
	f.Billing_Cell_Number.value = f.Contact_Cell_Number.value;
	f.Billing_email.value = f.Contact_email.value;
    /* If more fields are used, just expand the parameters
       above to include the additional fields. */
  }
}// JavaScript Document