function rechRef(koi){
	if(koi){
		$("#chargement").show();
		$.post(racine+"boutique/aj_rechRef.php", { REFRECHERCHEE : koi } ,function(text){ 
			document.getElementById('lignesPanier').innerHTML = text;
			$("#chargement").hide();
			});
		}else{
		modifPanier('','');
		}
	}
function modifPanier(koi,modif){
	$("#chargement").show();
	$.post(racine+"boutique/aj_panier.php", { cata : cata, idRef : koi, TYPEMODIF : modif } ,function(text){ 
		$("#lignesPanier").html(text);
		totPanier();
		$("#chargement").hide();
		});
	}
function totPanier(){
	$.post(racine+"boutique/aj_totPanier.php", { } ,function(text){ 
		$("#totalPanier").html(text);
		});
	}

