// *****************************************************************************
// ENCUESTAS
// *****************************************************************************
// -----------------------------------------------------------------------------
function poll_vote() {
  on_loading( 'div_poll','poll_loading', '', "/thm/img/animgifs/clock-loader.gif" );
  
  new Ajax( 'index.php'+'?ajax=1&mod=polls&exec=poll_vote', {
    method: "POST",
    update: 'div_encuesta',
    data: $('form_encuesta').toQueryString(),
    onComplete: function() {
    }
  }).request();
}

// -----------------------------------------------------------------------------
function poll_show( accion ) {
  on_loading( 'div_poll','poll_loading', '', "/thm/img/animgifs/clock-loader.gif" );
  
  new Ajax( 'index.php'+'?ajax=1&mod=polls&exec=poll_show&action='+accion, {
    method: "GET",
    update: 'div_encuesta',
    onComplete: function() {
    }
  }).request();
}

