  ///
  /// NetForce Tecnologia
  /// Biblioteca do componente Button
  ///

  /**
   * input do tipo button com href deve ser dado um document.location
   */
  $(document).ready(function() {
    $('input[type="button"]').each(function() {
      var tag = $(this);
      if ((tag.attr('href') != '') && (tag.attr('href') != undefined))
      {
        tag.click(function() {
          document.location = $(this).attr('href');
        });
      }
    });
  });
