diff --git a/htabs.inc.php b/htabs.inc.php
deleted file mode 100644
index 1150ac3..0000000
--- a/htabs.inc.php
+++ /dev/null
@@ -1,78 +0,0 @@
-
-
-
-$htabs_current = "";
-$htabs_tabs = array();
-
-function htabs_begin($name, $tabs, $selected)
-{
- global $htabs_current, $htabs_tabs;
- echo "
";
- foreach($tabs as $t=>$d) {
- $sel = ($t == $selected) ? 'class=\"htabs_sel\"' : '';
- echo "- ".i18n($d['label']).'
';
- $tabs[$t]['selected'] = false;
- }
- echo '
';
- /* Force the upcoming divs below this UL */
- echo '';
- $tabs[$selected]['selected'] = true;
- $htabs_current = $name;
- $htabs_tabs = $tabs;
-}
-
-function htabs_tab_begin($tab)
-{
- global $htabs_current, $htabs_tabs;
- echo "";
- echo "
";
-
-}
-function htabs_tab_end()
-{
- echo '
';
-}
-
-function htabs_end()
-{
- global $htabs_current, $htabs_tabs;
- $default = '';
- $first = '';
- echo '';
- $htabs_current = "";
- $htabs_tabs = array();
-}
-?>