/* Funcao que abre a janela do botao Imprmir */
function popupid(texto){
	/*w = 714;
	h = 516;
	l = (screen.availWidth-w)/2;
	t = (screen.availHeight-h)/2;
	popup("popup.php?id="+texto, "JanelaPopupAps", w, h, l, t, 1);*/
	window.open("popup.php?id="+texto);
}

var divs = document.getElementsByTagName('div');
/* ========================================= */

/* Funcao que esconde imagens da barra do topo do site */
function HideAllBarraTopo() {
	document.getElementById('img_newsletter').style.display = 'none';
	document.getElementById('img_ededicate').style.display = 'none';
	document.getElementById('img_eerp').style.display = 'none';
	document.getElementById('img_inovacao').style.display = 'none';
	document.getElementById('img_ferias').style.display = 'none';
}
/* =================================================== */

/* Funcao do contador de caracteres do link contato */
function ContChar(opt_boxcontado, opt_contarcorpo, opt_valormax) {
	var boxcontado = opt_boxcontado ? opt_boxcontado : "boxcontado";
	var contarcorpo = opt_contarcorpo ? opt_contarcorpo : "quant";
	var valormax = opt_valormax ? opt_valormax : 500;

	var field = document.getElementById(boxcontado);
	if (field && field.value.length >= valormax) {
		field.value = field.value.substring(0, valormax);
	}
	var txtField = document.getElementById(contarcorpo);
	if (txtField) {
		txtField.innerHTML = field.value.length;
	}
}
/* ================================================ */

/* Funcao que posiciona cursor de texto no campo com id="campo_email" */
function foco(email){
	document.getElementById("campo_email").focus();
}
/* ================================================================== */