function SectionTab(element, resultHandler) {
    EndpointTab("section", element, resultHandler, this);

    this.params = [
        'q', 'format'
    ];

    this.getEndpointPath = function() {
        return "sections";        
    }
    
    this.updateSearchUrl();
}

