	function qtdProd(id, tip, max){
		
		var campo, val;
		
		campo = 'qtd_prod_' + id;
		var val = parseInt(document.getElementById(campo).value);
		if(tip=="+") nVal = val+1;
		if(tip=="-" && val > 1) nVal = val-1;
		if(nVal > 0) document.getElementById(campo).style.width = "20px";
		if(nVal > 99) document.getElementById(campo).style.width = "27px";
		if(nVal > 999) document.getElementById(campo).style.width = "30px";
		document.getElementById(campo).value = nVal;
		//return true;
		
	}
	
	function addCar(id, orig, dest){
		
		var campo, qtd_prod, url;
		
		qtd_prod = document.getElementById('qtd_prod_' + id).value;
		url = dest + "?t=add&cd_produto=" + id + "&qtd_produto=" + qtd_prod + "&orig=" + orig;
		location.href = url;
		//return true;
		
	}
	
	function delCar(id){
		
		if(confirm("Deseja realmente remover o produto da lista?")){
			
			location.href = "car.php?t=del&cd_produto=" + id;
			
		} else {
			
			return false;
			
		}
		
	}
	
	function verificaAlteracao(v1, v2, id){
		
		if(v1!=v2){
			
			location.href = "car.php?t=qtd&cd_produto=" + id + "&qtd_produto=" + v2;
			
		} else {
			
			return true;
			
		}
		
	}
