#!/usr/bin/perl
#
# index_html_file -- put a TOC on a <dl> orgranized file
#  input: file with <dl> strtucture using
#		<dt>...</dt> lines as section headers
#  output: file with a TOC at the top and with anchors
#		inserted at each section
#  NOTE:  assumes there is a head section and a body section
#	  puts the TOC just after the head at the start of the body
#

	@file = <>;		# slup whole thing
	#
