// JavaScript Document


function ValidaOportunidade () {

		if (document.oportunidade.nome.value==""){
        alert("Digite seu nome.");
        document.oportunidade.nome.focus();    
    return false;
    }
		if (document.oportunidade.nasc.value==""){
        alert("Digite sua data de nascimento.");
        document.oportunidade.nasc.focus();    
    return false;
    }
		if (document.oportunidade.email.value==""){
        alert("Digite seu E-mail.");
        document.oportunidade.email.focus();    
    return false;
    }
		if (document.oportunidade.cidade.value==""){
        alert("Digite sua cidade.");
        document.oportunidade.cidade.focus();    
    return false;
    }
		if (document.oportunidade.ddd_tel.value==""){
        alert("Digite o ddd de seu telefone.");
        document.oportunidade.ddd_tel.focus();    
    return false;
    }
        if (document.oportunidade.tel.value==""){
		alert("Digite seu telefone.");
        document.oportunidade.tel.focus();
    return false;
    }
return true;
}