#
 # HTML generating routines
 #
-# Author:        Patrick Canterino <patshaping@gmx.net>
-# Last modified: 2004-03-04
+# Author:        Patrick Canterino <patrick@patshaping.de>
+# Last modified: 2004-12-17
 #
 
 use strict;
 use vars qw(@EXPORT);
 
 use CGI qw(header);
-use Tool;
-
 use HTML::Entities;
 use Template;
 
 
 @EXPORT = qw(error_template
              error
-             abort
-             error_in_use);
+             abort);
 
 my $tpl_error;
 
 # Format an error message
 #
 # Params: 1. Error message
-#         2. Virtual path to which a link should be displayed (optional)
+#         2. Display a link to this path at the bottom of the page (optional)
 #         3. Hash reference: Template variables (optional)
 #
 # Return: Formatted message (Scalar Reference)
  $tpl->read_file($tpl_error);
 
  $tpl->fillin("ERROR",$message);
- $tpl->fillin("DIR",$path);
+ $tpl->fillin("BACK",$path);
  $tpl->fillin("SCRIPT",encode_entities($ENV{'SCRIPT_NAME'}));
 
  $tpl->parse_if_block("dir",defined $path);
 # ^^^^^
 #
 # Params: 1. Error message
-#         2. Hash reference: Template variables (optional)
+#         2. Display a link to this path at the bottom of the page (optional)
+#         3. Hash reference: Template variables (optional)
 
-sub abort($;$)
+sub abort($;$$)
 {
- my $output = error(shift,undef,shift);
+ my $output = error(shift,shift,shift);
  print $$output;
  exit;
 }