Index: trunk/core/admin_templates/js/catalog.js =================================================================== diff -u -r5005 -r5006 --- trunk/core/admin_templates/js/catalog.js (.../catalog.js) (revision 5005) +++ trunk/core/admin_templates/js/catalog.js (.../catalog.js) (revision 5006) @@ -124,24 +124,4 @@ $i++; } return false; -} - -Catalog.prototype.HideTab = function($prefix) { - - var $tab = document.getElementById($prefix + '_tab_container'); - if ($tab) { - $tab.style.display = 'none'; - var $index = this.queryTabRegistry('prefix', $prefix, 'index'); // index of hidden tab - if ($index + 1 < this.TabRegistry.length) { - // some tabs exists after hidden tab - this.ShowTab(this.queryTabRegistry('index', $index + 1, 'prefix')); - } - } -} - -Catalog.prototype.ShowTab = function($prefix) { - var $tab = document.getElementById($prefix + '_tab_container'); - if ($tab) { - $tab.style.display = 'block'; - } } \ No newline at end of file