function removeelement(cart_id,client_id) {
	var answer = confirm("Would you like to remove this cart element?");
	if (answer) {
		window.location="client.php?c="+client_id+"&action=removeelement&cart="+cart_id;
	}
}

function checkout() {
	document.getElementById('checkout_form').submit();
}