function popup (u) {
	window.open(u,'popup','height=450,width=800,scrollbars=1,resizable=1,menubar=0,toolbar0,status=1,location=0,directories=0');
}

function emailaddress(username,domain) {
  document.write('<a href="mai'+'lto:'+username+'@'+domain+'">'+username+'@'+domain+'</a>');
}

function copyBilling(prefix) {
	if(prefix == "company") {
		document.f.billing_company_name.value = document.f.company_name.value;
		document.f.billing_address.value = document.f.address.value;
		document.f.billing_address2.value = document.f.address2.value;
		document.f.billing_city.value = document.f.city.value;
		document.f.billing_state.value = document.f.state.value;
		document.f.billing_zip.value = document.f.zip.value;
		document.f.billing_country.value = '';
		document.f.billing_contact_name.value = document.f.name.value;
		document.f.billing_contact_phone.value = document.f.phone.value;
	}
	if(prefix == "pickup") {
		document.f.billing_company_name.value = document.f.pickup_company_name.value;
		document.f.billing_address.value = document.f.pickup_address.value;
		document.f.billing_address2.value = document.f.pickup_address2.value;
		document.f.billing_city.value = document.f.pickup_city.value;
		document.f.billing_state.value = document.f.pickup_state.value;
		document.f.billing_zip.value = document.f.pickup_zip.value;
		document.f.billing_country.value = document.f.pickup_country.value;
		document.f.billing_contact_name.value = document.f.pickup_contact_name.value;
		document.f.billing_contact_phone.value = document.f.pickup_contact_phone.value;
	}
	if(prefix == "delivery") {
		document.f.billing_company_name.value = document.f.delivery_company_name.value;
		document.f.billing_address.value = document.f.delivery_address.value;
		document.f.billing_address2.value = document.f.delivery_address2.value;
		document.f.billing_city.value = document.f.delivery_city.value;
		document.f.billing_state.value = document.f.delivery_state.value;
		document.f.billing_zip.value = document.f.delivery_zip.value;
		document.f.billing_country.value = document.f.delivery_country.value;
		document.f.billing_contact_name.value = document.f.delivery_contact_name.value;
		document.f.billing_contact_phone.value = document.f.delivery_contact_phone.value;
	}
}