// JavaScript Document
// FUNÇÕES DO FORMULÁRIO DE CADASTRO

function exibeIgreja()
{
	document.getElementById("igreja").style.visibility="visible";
	document.getElementById("nameIgreja").style.visibility="visible";
	document.getElementById("fardadoS").value=1;
	document.getElementById("fardadoN").value=0;
	
}
function hideIgreja()
{
	document.getElementById("igreja").style.visibility="hidden";
	document.getElementById("nameIgreja").style.visibility="hidden";
	document.getElementById("igreja").value="";
	document.getElementById("fardadoS").value=0;
	document.getElementById("fardadoN").value=1;
}
function newsletterCheck()
{
	valor=document.cadastro.newsletter.checked;
	if (valor)
		document.cadastro.newsletter.value=1;
	else
		document.cadastro.newsletter.value=0;
}
function verSenha()
{
	valor=document.cadastro.senha.value;
	if (valor)
		document.cadastro.alterar.value=1;
	else
		document.cadastro.alterar.value=0;
}

// Valida Email
function ValidarEmail(email)
{
  if ((email.length == 0) && ((email.indexOf("@") < 1) || (email.indexOf('.') < 7)))
  	return false;
  return true;
}