function enviardados(){

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

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

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

if(document.form2.endereco.value=="" || document.form2.endereco.value.length < 2)
{
alert( "Preencha campo Endereço corretamente!" );
document.form2.endereco.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.cpf.value=="" || document.form2.cpf.value.length < 2)
{
alert( "Preencha campo Cpf corretamente!" );
document.form2.cpf.focus();
return false;
}

if(document.form2.complemento.value=="" || document.form2.complemento.value.length < 3)
{
alert( "Preencha campo Complemento corretamente,\nCampo Mensagem está vazio ou\nestá menor que 3 dígitos!" );
document.form2.complemento.focus();
return false;
}


return true;
}
