# This auxiliary file contains the following subroutines:
# errorPage, someOtherFunction

######################################################################
sub errorPage {
 my $message = $_[0];  # optional message parameter
 
 print<<ALL;
 <html><head><title>Server Error</title></head><body>
  <h2>Server Error Encountered</h2>
   The server was unable to open a data file. Please try again. If the problem persists, please notify the <a href="mailto:admin\@uweb.edu">webmaster</a>.
 </body></html>
ALL
 
exit;   # terminate program since failure to open data file
}
######################################################################

######################################################################
sub someOtherFunction {

}
######################################################################

1; 	# This statement must be placed at the bottom of all auxiliary 
		# files so that the require function returns a true value.
	 
