function valida() {

    var nome = document . getElementById("nome") . value;

    var email = document . getElementById("email") . value;

    var site = document . getElementById("site") . value;

    var titulo = document . getElementById("titulo") . value;

    var email_s = document . getElementById("email_submissao") . value;

    var descricao = document . getElementById("descricao") . value;

    var palavra_chave = document . getElementById("palavra_chave") . value;

    if (nome == "") {

        alert("Preencha o Campo Nome Corretamente");

        document . form1 . nome . focus();

        return false;

    }

    if (email == "") {

        alert("Preencha o Campo email Corretamente");

        document . form1 . email . focus();
        return false;

    }

    if (site == "") {

        alert("Preencha o Campo Endereço do Site Corretamente");

        document . form1 . site . focus();

        return false;

    }

    if (titulo == "") {

        alert("Preencha o Campo Título do site Corretamente");

        document . form1 . titulo . focus();

        return false;

    }

    if (email_s == "") {

        alert("Preencha o Campo Email de submissão Corretamente");

        document . form1 . email_submissao . focus();

        return false;

    }

    if (descricao == "") {

        alert("Preencha o Campo Descrição Corretamente");

        document . form1 . descricao . focus();

        return false;

    }

    if (palavra_chave == "") {

        alert("Preencha o Campo Palavra Chave Corretamente");

        document . form1 . palavra_chave . focus();

        return false;

    }

}