// Copyright LQC 2009
// Auteur: Gilles CRUCHON
// COde JS commun au site therascience

/****************************/
/* Pour le résumé du panier */
/****************************/

function showBasketSummary(){
}

function hideBasketSummary(){
}

function updateContentBasketSummary(){
	$.ajax({
		type: "GET",
		url: "ajaxGetBasketSummary.php",
		dataType: "json",
		success: function (data, textStatus) {
			if( data.error == '0' ){
				//Pas d'erreur
				$("#basketSummary").html( data.html );
				
			} else {
				alert( "Erreur : " + data.error);
			}
		},
		error: function (XMLHttpRequest, textStatus, errorThrown) {
			alert("Pas de connection (" + textStatus + ")" );
		}
	});
}
