// JavaScript Document

function onbackground(parametro){
	document.getElementById(parametro).style.backgroundColor = "#FFFF99";
}

function outbackground(parametro){
	document.getElementById(parametro).style.backgroundColor = "#FFF";
}

function focalize(){
	document.novidades.nome.focus();
}

function relatoriocad(){
	if(document.getElementById('igreja').value==""){
		alert("Preencha o campo IGREJA corretamente.");
		document.getElementById('igreja').focus();
		return false;
	}
	if(document.getElementById('user').value==""){
		alert("Preencha o campo USUARIO corretamente.");
		document.getElementById('user').focus();
		return false;
	}
	if(document.getElementById('pass').value==""){
		alert("Preencha o campo SENHA corretamente.");
		document.getElementById('pass').focus();
		return false;
	}
	if(document.getElementById('confirmpass').value==""){
		alert("Preencha o campo CONFIRME SUA SENHA corretamente.");
		document.getElementById('confirmpass').focus();
		return false;
	}
	if(document.getElementById('pass').value!=document.getElementById('confirmpass').value){
		alert("As senhas nao correspondem");
		document.getElementById('pass').value = "";
		document.getElementById('confirmpass').value = "";
		document.getElementById('pass').focus();
		return false;
	}
}