/*
JavaScript Document
Scripts de validação
Respeite a propriedade intelectual, colocando um link para esse site
*/
window.onload = function f(){document.getElementById('email').focus();}
function valida(){
if (document.getElementById('email').value==''){document.getElementById('email').focus();alert('Digite seu e-mail.');return false}
if (document.getElementById('senha').value==''){document.getElementById('senha').focus();alert('Digite sua senha.');return false}
if (document.getElementById('nome').value==''){document.getElementById('nome').focus();alert('Digite seu nome.');return false}
if (document.getElementById('telefone').value==''){document.getElementById('telefone').focus();alert('Digite seu telefone.');return false}
if (document.getElementById('senha').value != document.getElementById('senha2').value){document.getElementById('senha').focus();alert('Senha confirmada incorretamente.');return false}
if (document.getElementById('email').value != document.getElementById('email2').value){document.getElementById('email').focus();alert('E-mail confirmado incorretamente.');return false}

if (document.getElementById('creci').value != ''){  
	if (document.getElementById('estado').value==''){document.getElementById('estado').focus();alert('Informe o estado do CRECI');return false}
}
}

function corretor(){
 if (document.getElementById('corretor').checked == true){  
document.getElementById('creci1').style.display='block';
document.getElementById('creci2').style.display='block';
   }else{
document.getElementById('creci1').style.display='none';
document.getElementById('creci2').style.display='none';
	 }
}
