# File lib/amazon/search.rb, line 742
      def listmania_search(list_id, weight=HEAVY, &block)

        url = AWS_PREFIX + "?t=%s&ListManiaSearch=%s&f=xml&type=%s&dev-t=%s"
        @type = WEIGHT[weight]

        unless list_id.length.between?(12, 13)
          raise TermError, "list ID length must be 12 or 13 characters"
        end

        search(url % [@id, list_id, @type, @token], &block)
      end