var GroupHeader = function() {
	
    return {
        
        initialize: function() {
        },
        
        showItem: function(itemID) {
        	//PopupHandler.hideUglyElements();
        	if ($(itemID)) {
	        	$(itemID).setStyle({
	        		display: 'block'
	        	});
        	}
        },
        
        hideItem: function(itemID) {
        	//PopupHandler.showUglyElements();
        	if ($(itemID)) {
	        	$(itemID).setStyle({
	        		display: 'none'
	        	});
        	}
        }
        
    };
    
}();
