function copyCompanyInfoToBilling()
{ var theForm = document.getElementById('CompanyRegistration');
  theForm.elements['_bill_company'].value = document.getElementsByName('_name')[0].value;
  theForm.elements['_bill_address'].value = theForm.elements['_address'].value;
  theForm.elements['_bill_city'].value = theForm.elements['_city'].value;
  theForm.elements['bill_state'].value = theForm.elements['state'].value;
  theForm.elements['_bill_zip'].value = theForm.elements['_zip'].value;
  theForm.elements['bill_country'].value = theForm.elements['country'].value;

  theForm.elements['%bill_phone1'].value = theForm.elements['%phone1'].value;
  theForm.elements['%bill_phone2'].value = theForm.elements['%phone2'].value;
  theForm.elements['%bill_phone3'].value = theForm.elements['%phone3'].value;

 // theForm.elements['%bill_fax1'].value = theForm.elements['%fax1'].value;
 // theForm.elements['%bill_fax2'].value = theForm.elements['%fax2'].value;
 // theForm.elements['%bill_fax3'].value = theForm.elements['%fax3'].value;
}
