function swap_confirm_button(img_src) {
	jQuery('#confirm_order_button_container').html('<img style="margin-right: 20px; float: right;" src="' + img_src + '">');
}

function cancelCart() {
	var formEl = document.getElementById('cancel_cart_form');
	if (formEl) { formEl.submit(); }
}

// Called from the order receipt page
function printreceiptpage_orderplaced(context_path) { 
	var sOption = "toolbar=yes,location=no,directories=yes,menubar=yes,";
	sOption += "scrollbars=yes,width=600,height=600,left=10,top=25"; 
	var winprint = window.open(context_path + "/popup/printreceipt.jsp", "Print", sOption); 
	winprint.focus(); 
}

function add_shipping_go_to_add_billing(billing_page) {
	
	// Change STEP to 2 (add shipping)
	$('step').value = '2';

	// Change success_checkout to add_billing.jsp
	$('success_checkout').value = billing_page;
	
	// Submit the form
	$('theform').submit();
}

function add_shipping_billing(confirm_page) {
	
	// Change STEP to 4 (add shipping/billing)
	$('step').value = '4';

	// Change success_checkout to confirm.jsp
	$('success_checkout').value = confirm_page;
	
	// Submit the form
	$('theform').submit();
}

