	var waiting=false;
	function agregarcarro(id) {
		var cantidad;
		cantidad = prompt('Ingrese la cantidad que desea comprar:');
		if (cantidad != null && cantidad > 0) {
			location.href="../../administrador/cms_pedidos/agregarcarro.php?id="+id+"&cant="+cantidad;
		}
	}
	function agregarcarrotb(id, cantidad) {
		if (waiting) {
			alert ('La operación ya se está efectuando, por favor espere.');	
		} else {
		if (cantidad < 1) {
			alert('La cantidad debe ser mayor a 0.');
		} else if (cantidad > 10000) {
			alert('La cantidad no puede superar las 10000 unidades.');
		} else {
			//if (confirm('¿Desea agregar ' + cantidad + ' unidades de este producto al carro?')) {
				//location.href="../../administrador/cms_pedidos/agregarcarro.php?id="+id+"&cant="+cantidad;
				
				ajax=nuevoAjax();
				ajax.open("GET", "../../administrador/cms_pedidos/agregarcarro.php?id="+id+"&cant="+cantidad+"&lid=" + Math.random()*99999, true);
				ajax.onreadystatechange=function() 
				{ 
					if (ajax.readyState==4)
					{
						if (ajax.responseText.replace(/^\s*|\s*$/g,"") == 'OK') {
							//alert ('El elemento se ha agregado al carro de compras.');
							location.reload();
						} else if (ajax.responseText.replace(/^\s*|\s*$/g,"") == 'OC') {
							//alert ('El elemento se ha agregado al carro de compras.');
							location.href="../../estructura/secciones/s_paginadinamica.php?ex=carropedidos"
						} else {
							alert ('Ha ocurrido un error al intentar agregar al carro de compras, por favor intentelo mas tarde.');
						}
						waiting=false;
					} 
				}
				ajax.send(null);
				
			//}
		}
		}
	}
