function processaCarrinho(form_escolha, codigo_produto, categoria, subcategoria){
	//alert(cd);
	
	nome = 'Processa'
	arq = 'processaCarrinho.php?cmd=inc&codProduto=' + codigo_produto + '&qtde=' + form_escolha.qtde_carrinho.value + '&codSubCategoria=' + subcategoria+ '&codCategoria=' + categoria;
	
		form_escolha.action = arq;
		form_escolha.target = 'frmRight';
		form_escolha.method = 'post';
		form_escolha.submit();
		
	
}

function processaCarrinhoCD(form_escolha, codigo_produto, categoria, subcategoria){

	nome = 'Processa'
	arq = 'processaCD.php?cmd=inc&codProduto=' + codigo_produto + '&qtde=' + form_escolha.qtde_carrinho.value + '&codSubCategoria=' + subcategoria+ '&codCategoria=' + categoria;
	//alert(arq);
		form_escolha.action = arq;
		form_escolha.target = 'frmRight';
		form_escolha.method = 'post';
		form_escolha.submit();
		
		form_escolha.action = 'carrinho.php';
		form_escolha.target = 'mainFrame';
		form_escolha.method = 'post';
		form_escolha.submit();
	
}

function processaCarrinhoOZ(form_escolha, qtde, codigo_produto, categoria, subcategoria){

	nome = 'Processa'
	arq = 'processaCD.php?cmd=inc&codProduto=' + codigo_produto + '&qtde=' + qtde + '&codSubCategoria=' + subcategoria+ '&codCategoria=' + categoria;
	//alert(arq);
		form_escolha.action = arq;
		form_escolha.target = 'frmRight';
		form_escolha.method = 'post';
		form_escolha.submit();
		
		form_escolha.action = 'carrinho.php';
		form_escolha.target = 'mainFrame';
		form_escolha.method = 'post';
		form_escolha.submit();
	
}



//function processaCarrinhoDoacao(form_escolha, codigo_produto, categoria, subcategoria){

//	nome = 'Processa'
//	arq = '../processaCarrinho.php?doacao=s&cmd=inc&codProduto=' + codigo_produto + '&qtde=' + form_escolha.qtde_carrinho.value + '&codSubCategoria=' + subcategoria+ '&codCategoria=' + categoria;

//		form_escolha.action = arq;
//		form_escolha.target = 'frmRight';
//		form_escolha.method = 'post';
//		form_escolha.submit();
		
	
//}


function alteraQuantidade(form_escolha, tipo){

	//alert(form_escolha.qtde_carrinho.value);
	//alert(tipo);
	//alert(form_escolha);
	
	var qtde
	
	qtde = form_escolha.qtde_carrinho.value;
	
	//validando se eh numerico
	if (qtde != (qtde/1) ) {
		qtde = 0;
	}

	if 	(tipo == 0){	  //Aumentando quantidade do carrinho
		qtde++;
	}else if( tipo == 1){ //Diminunido quantidade do carrinho
		qtde--;
	}	
	

	if (qtde > 99){
		qtde--;
	}else if(qtde <= 0){
		qtde = 1;
	}
	
	form_escolha.qtde_carrinho.value = qtde;
}
//########

function alteraQuantidade2(form_escolha, tipo){

	//alert(form_escolha.qtde_carrinho.value);
	//alert(tipo);
	//alert(form_escolha);
	
	var qtde
	
	qtde = form_escolha.qtde_carrinho.value;
	
	//validando se eh numerico
	if (qtde != (qtde/1) ) {
		qtde = 0;
	}

	if 	(tipo == 0){	  //Aumentando quantidade do carrinho
		qtde++;
	}else if( tipo == 1){ //Diminunido quantidade do carrinho
		qtde--;
	}	
	

	if (qtde > 99){
		qtde--;
	}else if(qtde <= 0){
		qtde = 1;
	}
	
	       //alert('+ form_escolha +');
	form_escolha.qtde_carrinho.value = qtde;
	//document.form_escolha.method="POST";
 // document.form_escolha.action="?";
 // document.form_escolha.submit();
  // document.form_1.submmit

}
//#############
function alteraQuantidadeCarrinho(form_escolha_txt, tipo){

	//alert(form_escolha.qtde_carrinho.value);
	//alert(tipo);
	//alert(form_escolha);
	
	var qtde
	
	qtde = form_escolha_txt.value;
	
	//validando se eh numerico
	if (qtde != (qtde/1) ) {
		qtde = 0;
	}

	if 	(tipo == 0){	  //Aumentando quantidade do carrinho
		qtde++;
	}else if( tipo == 1){ //Diminunido quantidade do carrinho
		qtde--;
	}	
	

	if (qtde > 99){
		qtde--;
	}else if(qtde <= 0){
		qtde = 1;
	}
	
	form_escolha_txt.value = qtde;
}
