function formSubmit() {
	var df = document.CheckoutForm;
	df.submit();
	return;
}

function checkout_continue() {
	var df = document.CheckoutForm;
	df.process_cmd.value = 'continue';
	df.submit();
	return;
}

function update_total() {
	var df = document.CheckoutForm;
	df.process_cmd.value = 'update_cart';
	df.submit();
	return;
}

function remove_item(id) {
	var df = document.CheckoutForm;
	df.process_cmd.value = 'remove_item_'+id;
	df.submit();
	return;
}

function copyFromShipping() {
	var df = document.CheckoutForm;
	df.bill_firstname.value = df.ship_firstname.value;
	df.bill_lastname.value  = df.ship_lastname.value;
	df.bill_address.value   = df.ship_address.value;
	df.bill_address2.value  = df.ship_address2.value;
	df.bill_city.value      = df.ship_city.value;
	df.bill_state.value     = df.ship_state.value;
	df.bill_zip.value       = df.ship_zip.value;
	df.bill_country.value   = df.ship_country.value;
	return;
}

function searchQuerySubmit() {
	df = document.queryForm;
	df.submit();
}