/************************************************************************
 *    NAME: LastMod.js							*
 *  AUTHOR: Kevin Cole <kjcole@gri.gallaudet.edu>			*
 *   WHERE: Gallaudet Research Institute, Washington, DC 20002		*
 * LASTMOD: 2000.04.13							*
 * PURPOSE: Inserts a string indicating the date that a web page was	*
 *	    last modified.						*
 *   USAGE: <script type="text/javascript"				*
 *		    language="javascript"				*
 *		    src="scripts/LastMod.js">				*
 *									*
 * Copyright (c) 2000 Kevin Cole <kjcole@gri.gallaudet.edu>		*
 ************************************************************************/

if (Date.parse(document.lastModified) != 0) {
  document.write("<blockquote><p><hr />\n<center>");
  document.write("<small>Last modified by Kevin Cole ");
  document.write("&lt;<a href=\"mailto:kjcole@gri.gallaudet.edu\">");
  document.write("kjcole@gri.gallaudet.edu</a>&gt on "+document.lastModified);
  document.write("</small></center>\n<hr /></p></blockquote>\n");
}

