
function autoFill(f)
{
	f.billing_company_name.value = f.company_name.value;
	f.billing_contact.value = f.contact.value;
	f.billing_address.value = f.address.value;
	f.billing_city.value = f.city.value;
	f.billing_state.value = f.state.value;
	f.billing_zip.value = f.zip.value;
	f.billing_phone.value = f.phone.value;
}