search: null,
        toolbar: null,
        tools: null,
+       titlebar: null,
        options: null,
        configurationObj: null,
        loadRequest : null,
                this.window = $(this.windowId + this.elements.containerSuffix);
                this.tools = $(this.windowId + this.elements.toolsButtonSuffix);
                this.options = $(this.windowId + this.elements.optionsButtonSuffix);
+               this.titlebar = $(this.windowId + this.elements.titleSuffix);
 
                if(data.hasOwnProperty('showId')) {
                                this.showEl = $(data.showId);
                        this.resetSize();
                }.bind(this));
 
+               this.titlebar.observe('dblclick', function() {
+                       this.resetSize();
+               }.bind(this));
+
                this.search.observe('keyup', function(){
                        this.setSearch();
                }.bind(this));
                        }.bind(search_pattern));
        },
        setElementsCount : function() {
-               var title_el = $(this.windowId + this.elements.titleSuffix);
                var elements_count = $$('div[id="' + this.windowId + this.elements.containerSuffix + '"] div.' + this.elements.contentItems).length || $$('div[id="' + this.windowId + this.elements.containerSuffix + '"] tr.' + this.elements.contentItems + ', div[id="' + this.windowId + this.elements.containerSuffix + '"] tr.' + this.elements.contentAlternatingItems).length;
                var count_el = $(this.windowId + this.elements.titleSuffix).getElementsByTagName('span')[0];
                $(count_el).update(' (' + elements_count + ')');
 
        height: 14px;
        margin-right: 51px;
        padding: 0;
+       -webkit-touch-callout: none;
+       -webkit-user-select: none;
+       -khtml-user-select: none;
+       -moz-user-select: none;
+       -ms-user-select: none;
+       user-select: none;
 }
 
 div.slide-window-close, div.slide-window-fullsize, div.slide-window-sort {