	function formButtonFocusOn(id01,id02,id03){
		if(id01!=" "){
	  		id01.style.backgroundImage="url(../imagens/formBotEnviarAtivo.png)";
		}
		if(id02!=" "){
			id02.style.backgroundImage="url(../imagens/formBotRegulamentoAtivo.png)";
		}
		if(id03!=" "){
			id03.style.backgroundImage="url(../imagens/formBotLimparAtivo.png)";
		}
	}
	
	function formButtonFocusOff(id01,id02,id03){
		if(id01!=" "){
			id01.style.backgroundImage="url(../imagens/formBotEnviar.png)";
		}
		if(id02!=" "){
			id02.style.backgroundImage="url(../imagens/formBotRegulamento.png)";
		}
		if(id03!=" "){
			id03.style.backgroundImage="url(../imagens/formBotLimpar.png)";
		}
	}
	
	
	function switchMask(fieldCPF,fieldCNPJ,typeField){
		tipoCampo = typeField;
		campoCPF = fieldCPF;
		campoCNPJ = fieldCNPJ;

		if(tipoCampo == "cpf"){
			campoCPF.style.display="block";
			if(document.getElementById("advice_required_inputCPF") && campoCPF.value==""){
 				document.getElementById("advice_required_inputCPF").style.display="";
			}
			
			if(document.getElementById("advice_required_inputCPF") && campoCPF.value!=""){
 				document.getElementById("advice_required_inputCPF").style.display="none";
			}
			
			campoCNPJ.style.display="none";
			if(document.getElementById("advice_required_inputCNPJ") && campoCNPJ.value==""){
 				document.getElementById("advice_required_inputCNPJ").style.display="none";
			}
			if(document.getElementById("advice_required_inputCNPJ") && campoCNPJ.value!=""){
 				document.getElementById("advice_required_inputCNPJ").style.display="none";
			}
			
		}
		
		if(tipoCampo == "cnpj"){
			campoCPF.style.display="none";
			if(document.getElementById("advice_required_inputCPF") && campoCPF.value==""){
 				document.getElementById("advice_required_inputCPF").style.display="none";
			}
			
			if(document.getElementById("advice_required_inputCPF") && campoCPF.value!=""){
 				document.getElementById("advice_required_inputCPF").style.display="none";
			}
			
			campoCNPJ.style.display="block";
			if(document.getElementById("advice_required_inputCNPJ") && campoCNPJ.value==""){
 				document.getElementById("advice_required_inputCNPJ").style.display="";
			}
			if(document.getElementById("advice_required_inputCNPJ") && campoCNPJ.value!=""){
 				document.getElementById("advice_required_inputCNPJ").style.display="none";
			}
	    }
	}
	
	function switchOutros(field){
		var campoSelecionado;
		var contatoForm = document.getElementById("formContato");
		var selectConhecimento = document.getElementById("conhecimento");
		var outrosCampo = document.getElementById("campoOutros");
		
		for (var i = 0; i < selectConhecimento.length; i++) {
			if (selectConhecimento.options[i].selected) {
				campoSelecionado = selectConhecimento.options[i];
				
				if (campoSelecionado.value == "Outros"){
					outrosCampo.style.display = "block";
				}else{
					outrosCampo.style.display = "none";
				}
			}
		}
	}

	/*function ativarRolagemVertical(){
		parent.document.getElementByTagName("html").style.overflowY= "scroll";
	}*/
	
	function switchRadioIMG(radioBot){
		
		var img01 = document.getElementById("img01");
		var img02 = document.getElementById("img02");
		var img03 = document.getElementById("img03");
		var webCard01 = document.getElementById("webCard01");
		var webCard02 = document.getElementById("webCard02");
		var webCard03 = document.getElementById("webCard03");
		var srcImg01Inativo = "../imagens/giftsWebcardsImg01Inativo.gif";
		var srcImg01Ativo = "../imagens/giftsWebcardsImg01Ativo.gif";
		var srcImg02Inativo = "../imagens/giftsWebcardsImg02Inativo.gif";
		var srcImg02Ativo = "../imagens/giftsWebcardsImg02Ativo.gif";
		var srcImg03Inativo = "../imagens/giftsWebcardsImg03Inativo.gif";
		var srcImg03Ativo = "../imagens/giftsWebcardsImg03Ativo.gif";
		
		switch(radioBot) {
			
			case "radioBot1":
				img01.src=srcImg01Inativo;
				img02.src=srcImg02Inativo;
				img03.src=srcImg03Inativo;
				
				img01.src=srcImg01Ativo;
	
				webCard01.checked="checked";
				
			break;
			
			case "radioBot2":
				img01.src=srcImg01Inativo;
				img02.src=srcImg02Inativo;
				img03.src=srcImg03Inativo;
				
				img02.src=srcImg02Ativo;
				
				webCard02.checked="checked";
				
			break;
			
			case "radioBot3":
				img01.src=srcImg01Inativo;
				img02.src=srcImg02Inativo;
				img03.src=srcImg03Inativo;
				
				img03.src=srcImg03Ativo;
				
				webCard03.checked="checked";
				
			break;
	
			default:
				img01.src=srcImg01Inativo;
				img02.src=srcImg02Inativo;
				img03.src=srcImg03Inativo;
		} 
		
	}

function abrir_janela(pagina,titulo,topo,esquerda,largura,altura){
	window.open(pagina,titulo,"status=no,toolbar=no,menubar=no,top="+topo+",left="+esquerda+",width="+largura+",height="+altura+",scrollbars=no,maximized=no,resizable=no,fullscreen=no");
}
