var Remote = new Ajax();
function MostraOutros(campoID){
	var obj = document.getElementById(campoID);
	
	if(obj.style.display==''){
		obj.style.display='none';
	}
	else{
		obj.style.display='';
		obj.focus();
	}	
}

function MostraEnderecoOpcional(){
	var i,display;
	var obj = document.getElementById("EndCorrespondencia").checked;
	if(obj){display="";}else{display="none";} 
	for(i=1;i<=10;i++){
		if(document.getElementById("trEnd_" + i)){
			document.getElementById("trEnd_" + i).style.display = display;
		}
	}
	if(obj){document.getElementById("EndEndereco").focus();}
}

function ExibeFiliais(){
	var qtd = document.getElementById('QtdFiliais').value;
	//Ativa página via Ajax para exibir os campos para cadastrar filiais
	//Remote.loader($('DivLoader'))
	if((qtd>=0)&&(qtd<=25)){
		Remote.open('../parceiros/parceirosFiliaisAjax.asp?Qtd=' + qtd +'&Ajax=ON','ShowResult();');
	}
	else{
		alert("Quantidade Inválida!");
	}
}

//Retorno Ajax
function ShowResult(){
	var obj = document.getElementById('MostraFiliais');
	obj.style.display='';
	obj.innerHTML=Remote.responseText();
}

