function shopperAdd(cliente, articolo, qta) {
	var baseUrl = 'http://t2';
	var destUrl = '/users/asyncrequest/additem/cliente/' + cliente + '/articolo/'
			+ articolo + '/qta/' + qta;
	$.ajax( {
		url : destUrl,
		type : 'GET',
		success : function(responseText) {
			$("#carrello").html(responseText);
		}
	})
}

function showCarrello(cliente) {
	var baseUrl = 'http://t2'
	var destUrl = '/users/asyncrequest/showcarrello/cliente/' + cliente
	$.ajax( {
		url : destUrl,
		type : 'GET',
		success : function(responseText) {
			$("#carrello").html(responseText);
		}
	})
}

