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.cidade.value=="" || document.form.cidade.value.length < 2)
{
alert( "Preencha campo Cidade corretamente!" );
document.form.cidade.focus();
return false;
}

if(document.form.pais.value=="" || document.form.pais.value.length < 3)
{
alert( "Preencha campo País corretamente!" );
document.form.pais.focus();
return false;
}


return true;
}
