/* panier */

function manageCart(task,item,nombre) {
	/*if (task != '') return overlib('<img src=../ui/images/loading.gif align=absbottom hspace=3 border=0>',FGCOLOR,'#ffffff',BGCOLOR,'#000000',WIDTH,50);*/
   var url = '../panier/index.php';
   var params = 'task=' + task + '&item=' + item + '&nombre=' + nombre;
   var ajax = new Ajax.Updater(
	          {success: 'cartResult'},
              url,
              {method: 'get', parameters: params, onFailure: reportError});
	/*return nd();*/
}

function reportError(request) {
   $F('cartResult') = "Une erreur s'est produite";
}


function showLoading() {
	return overlib('<img src=../ui/images/loading.gif align=absbottom hspace=3 border=0>',FGCOLOR,'#ffffff',BGCOLOR,'#000000',WIDTH,24);
}

function hideLoading() {
	return nd();
}

function lll() {
	showLoading();
	setTimeout("hideLoading()", 500);
}

// function verifQuantite(nombre) {
	// if (nombre > 100) {
		//this.value = 1;
		// alert("Nombre trop grand");
	// }
	// else {
		// alert("test");
	// }
// }
