function agregarAlCarro(id, cant){
	var sumar = 0;
	if (arguments.length<2){
		cant = 1;
		sumar = 1;
	}
	opciones = {accion: 'agregarAlCarro', id: id, cant: cant, sumar: sumar}
	$.getJSON("libs-ajax.php", opciones,
		function (data){
			if (data.OK){
				$("#DIVcontenidoCarro").html(data.html);
			}else{
				alert("No se pudo agregar el producto");
			}
		}
	);
}


function quitarDelCarro(id){
	opciones = {accion: 'quitarDelCarro', id: id}
	$.getJSON("libs-ajax.php", opciones,
		function (data){
			if (data.OK){
				document.location.href="carro.php";
			}else{
				alert("No se pudo quitar el producto");
			}
		}
	);
}


function buscarCategoria(valor){
	$("#FRMbusqueda").submit();
	return true;

}

