function enviardados(){

if(document.form.nome.value=="" || document.form.nome.value.length < 2)
{
alert( "Preencha campo Nome corretamente!" );
document.form.nome.focus();
return false;
}

//if(document.form.mail.value=="" || document.form.mail.value.indexOf('@')==-1)
//{
//alert( "Preencha campo E-MAIL corretamente!" );
//document.form.mail.focus();
//return false;
//}

if(document.form.telefone.value=="" || document.form.telefone.value.length < 8)
{
alert( "Preencha campo Telefone corretamente!" );
document.form.telefone.focus();
return false;
}

if(document.form.endereco.value=="" || document.form.endereco.value.length < 6)
{
alert( "Preencha campo Endereço corretamente!" );
document.form.endereco.focus();
return false;
}

if(document.form.rg.value=="" || document.form.rg.value.length < 8)
{
alert( "Preencha campo RG corretamente!" );
document.form.rg.focus();
return false;
}

if(document.form.cpf.value=="" || document.form.cpf.value.length < 11)
{
alert( "Preencha campo Cpf corretamente!" );
document.form.cpf.focus();
return false;
}


if(document.form.experiencia.value=="" || document.form.experiencia.value.length < 3)
{
alert( "Preencha campo Experiência Profissional,\nCampo experiência profissinal está vazio ou\nestá menor que 3 dígitos!" );
document.form.experiencia.focus();
return false;
}



return true;
}
