function enviardados(){

if(document.form2.nome.value=="" || document.form2.nome.value.length < 2)
{
alert( "Preencha campo Nome Completo corretamente!" );
document.form2.nome.focus();
return false;
}

if(document.form2.data.value=="" || document.form2.data.value.length < 2)
{
alert( "Preencha campo Data de Nascimento corretamente!" );
document.form2.data.focus();
return false;
}

if(document.form2.rg.value=="" || document.form2.rg.value.length < 2)
{
alert( "Preencha campo RG corretamente!" );
document.form2.rg.focus();
return false;
}

if(document.form2.mail.value=="" || document.form2.mail.value.length < 2)
{
alert( "Preencha campo E-mail corretamente!" );
document.form2.mail.focus();
return false;
}

if(document.form2.fone.value=="" || document.form2.fone.value.length < 2)
{
alert( "Preencha campo Telefone corretamente!" );
document.form2.fone.focus();
return false;
}

if(document.form2.cargo.value=="" || document.form2.cargo.value.length < 2)
{
alert( "Preencha campo Cargo Pretendido corretamente!" );
document.form2.cargo.focus();
return false;
}

if(document.form2.remuneracao.value=="" || document.form2.remuneracao.value.length < 2)
{
alert( "Preencha campo Remuneracao Atual corretamente!" );
document.form2.remuneracao.focus();
return false;
}

if(document.form2.academico.value=="" || document.form2.academico.value.length < 2)
{
alert( "Preencha campo Nivel Academico corretamente!" );
document.form2.academico.focus();
return false;
}

if(document.form2.curriculo.value=="" || document.form2.curriculo.value.length < 2)
{
alert( "Preencha campo Curriculo corretamente!" );
document.form2.curriculo.focus();
return false;
}

return true;
}
