function valida_privacidad(id) {
        var campo = document.getElementById(id);
        if(!(campo.type == 'checkbox' && campo.checked == true)) {
            alert(ERR_NO_SEL);
            return false;
        } else {
            return true;
        }
}


