var caminho_cart="";

function carrega_a(caminho){
	caminho_cart=caminho;
}

function isNumberKey(evt){
	 var charCode = (evt.which) ? evt.which : event.keyCode
	 if (charCode > 31 && (charCode < 48 || charCode > 57))
		return false;

	 return true;
}


function comprar(prod_id){
			a_enviar=caminho_cart+"ajax_cart_add.php?tarefa=adiciona&id="+prod_id;
			$.post(a_enviar,"",function(retorno){
			$("#nprodutos_cartbox").html(retorno);
			$("#nprodutos_cartbox2").html(retorno);
			
				a_enviar=caminho_cart+"ajax_cart_add.php?tarefa=total";
				$.post(a_enviar,"",function(retorno){$("#id_x_total").html(retorno);});	
			});	
}

function remover_prod(){
			
			aid = document.getElementById("id").value;
			afuncao=document.getElementById("funcao").value;
			atam_id=document.getElementById("tam_id").value;
			acor_id=document.getElementById("cor_id").value;
			

			a_enviar=caminho_cart+"ajax_cart_add.php?tarefa=func&id="+aid+"&funcao="+afuncao+"&tam_id="+atam_id+"&cor_id="+acor_id;
			$.post(a_enviar,"",function(retorno){
				a_enviar=caminho_cart+"ajax_cart_view.php";
				$.post(a_enviar,"",function(retorno){$("#t_conteudo").html(retorno);});	
				a_enviar=caminho_cart+"ajax_cart_add.php?tarefa=conta";
				$.post(a_enviar,"",function(retorno){$("#nprodutos_cartbox").html(retorno);$("#nprodutos_cartbox2").html(retorno);});
				a_enviar=caminho_cart+"ajax_cart_add.php?tarefa=total";
				$.post(a_enviar,"",function(retorno){$("#id_x_total").html(retorno);});				
			});
				
}

function cart_empty(valor){
			a_enviar=caminho_cart+"ajax_cart_add.php?tarefa=func&funcao="+valor;
			$.post(a_enviar,"",function(retorno){
				a_enviar=caminho_cart+"ajax_cart_view.php";
				$.post(a_enviar,"",function(retorno){$("#t_conteudo").html(retorno);});	
				a_enviar=caminho_cart+"ajax_cart_add.php?tarefa=conta";
				$.post(a_enviar,"",function(retorno){$("#nprodutos_cartbox").html(retorno);$("#nprodutos_cartbox2").html(retorno);});
				a_enviar=caminho_cart+"ajax_cart_add.php?tarefa=total";
				$.post(a_enviar,"",function(retorno){$("#id_x_total").html(retorno);});				
			});
}

function recalcular(oid,otam,ocor,valor){

			 aid   = oid;
			atam   = otam;
			acor   = ocor;
			avalor = valor;

			a_enviar=caminho_cart+"ajax_cart_add.php?tarefa=func&id="+aid+"&funcao=recalc&tam_id="+atam+"&cor_id="+acor+"&qty="+avalor;
	
			$.post(a_enviar,"",function(retorno){
				a_enviar=caminho_cart+"ajax_cart_view.php";
				$.post(a_enviar,"",function(retorno){$("#t_conteudo").html(retorno);});	
				a_enviar=caminho_cart+"ajax_cart_add.php?tarefa=conta";
				$.post(a_enviar,"",function(retorno){$("#nprodutos_cartbox").html(retorno);$("#nprodutos_cartbox2").html(retorno);});
				a_enviar=caminho_cart+"ajax_cart_add.php?tarefa=total";
				$.post(a_enviar,"",function(retorno){$("#id_x_total").html(retorno);});				
			});
				
}