HTML::LBI
  DreamWeaver HTML Library Module
  Version 1.01

  Copyright (c) 2002 by S.D. Campbell <whytwolf@spots.ab.ca>

  Created 03 February 2002; Revised 12 February 2002 by SDC

  Description:
	A perl module for use with CGI scripts that opens a 
	Macromedia Dreamweaver library file (.lbi) and returns
	the resulting HTML code snippet.

  
  Installation:
      Unzip/tar the archive:
      	tar xvfz HTML-LBI-1.01.tar.gz
	
      Create the makefile
      	perl Makefile.PL
      
      Make the module (must have root access to install)
      	make
	make test
	make install

  Construction:
	  use HTML::LBI;

	  $html = new HTML::LBI("file.lbi");

  Use:
	Create a new instance of HTML::LBI as above by passing
	a pathname to the library file (absolute or relative)
	to the constructor.  The constructor will return
	the HTML from the .lbi file, which can then be printed out.

  Errors:
	Should the library file fail to open an error will be set
	in $HTML::LBI::errmsg

  This program is free software; you can redistribute it and/or
  modify it under the terms of the GNU General Public License
  as published by the Free Software Foundation; either version 2
  of the License, or (at your option) any later version.

  This program is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  GNU General Public License for more details.

  You should have received a copy of the GNU General Public License
  along with this program; if not, write to the Free Software
  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.