// JavaScript Document
function exibe(id){
	
	document.getElementById("principal").style.display="none";
	document.getElementById("programa").style.display="none";
	document.getElementById("agencia").style.display="none";
	document.getElementById("noticia").style.display="none";
	document.getElementById("servico").style.display="none";
	document.getElementById("fale").style.display="none";
		
	document.getElementById(id).style.display="block";
	document.getElementById(id).style.visibility="visible";

}

function abre() {
    var foto = window.open("","janela","width=350,height=340,resizable=no,toolbar=0,location=0,directories=0,status=no,menubar=0");
    setTimeout ("document.dados.submit();",10);
}

function enviarbrowser(){
	window.location.href ="http://browser.geranegocio.com.br/loginoper.asp?oper="+document.getElementById("oper").value+"&pass2="+document.getElementById("pass2").value;
}

function enviar2() {
	with (document.frmCadEmp) {
		if (validaCampos()) {
   			target = "_self";
			method = "post";
			action = "bancodeemprego/parceria/cadaemp2.asp";  	
			submit();
		}			
	}
}

function limpar() {
	document.frmCadEmp.reset();
}

function validaCampos(){
	var digits="0123456789";
	var temp;
	with (document.frmCadEmp) {
		if (cei.value == '') {
			if(!(validaCnpj(cgc.value))) {
				alert('CNPJ inválido!');
				cgc.focus();
				return false
			}
		}
	}
	return true;
}
