function validar() {
    if (document.cadastro.cad_nome.value.length < 2) {
	    window.alert("Por favor, digite seu nome!");
		return false;
	}   
	    if (document.cadastro.cad_sobrenome.value.length < 2) {
	    window.alert("Por favor, digite seu sobrenome!");
		return false;
	}
	if (document.cadastro.cad_cidade.value.length < 3) {
	    window.alert("Por favor, digite sua cidade!");
		return false;
	}
	if (document.cadastro.cad_estado.value == "--") {
	    window.alert("Por favor, selecione um Estado!");
		return false;
	}
	if (document.cadastro.cad_telefone.value.length < 7) {
	    window.alert("Por favor, digite seu telefone!");
		return false;
	}
	if (document.cadastro.cad_email.value.length < 5) {
	    window.alert("Por favor, digite seu e-mail!");
		return false;
	}
	if (document.cadastro.cad_email.value.indexOf('@', 0) == -1){
alert("O e-mail digitado é invalido!");

return (false);
}
	if (document.cadastro.cad_apelido.value.length < 4) {
	    window.alert("Seu apelido deve ter de 4 a 10 caracteres!");
		return false;
		}
	if (document.cadastro.cad_apelido.value.length > 10) {
	    window.alert("Seu apelido deve ter de 4 a 10 caracteres!");
		return false;
		}	
if (document.cadastro.cad_senha.value.length < 4) {
	    window.alert("Por favor, digite sua senha!");
		return false;
	}
if (document.cadastro.cad_termos.checked == "") {
	    window.alert("Para se cadastrar, você precisa aceitar nossos Termos & Condições!");
		return false;
	}
	return true;
}
