function explain_publist_html() {
  html = '';
  html = html + '<html>';
  html = html + '<head>';
  html = html + '	<title>PubList</title>';
  html = html + '	<link rel = STYLESHEET href = "/html/stylesheetmain.css" type = "text/css" title="TAL Online Styles">';
  html = html + '</head>';
  html = html + '<body bgcolor="#ffffff">';
  html = html + '<table width="100%" cellpadding="0" cellspacing="4" border="0">';
  html = html + '<tr>';
  html = html + '	<td></td>';
  html = html + '	<td>';
  html = html + '	<!-- Title -->';
  html = html + '	<b><i><i>PubList</i></i></b>';
  html = html + '	<!-- Begin Content  -->';
  html = html + '';
  html = html + '        <p><i>PubList</i> (http://www.publist.com/) has a searchable database';
  html = html + '	containing bibliographic, publisher, and indexing information for close';
  html = html + '	to 250,000 periodicals; additional data elements include a link to the';
  html = html + '	table of contents for many periodicals, and the URL of the';
  html = html + '	periodicals\'s Web site if available.  <i>PubList</i> is a free subset';
  html = html + '	of <i>Ulrich\'s Periodicals Directory</i>, published by the Cambridge';
  html = html + '	Information Group, which licenses the content to Infotrieve (an';
  html = html + '	abstracting, indexing, and document delivery service).';
  html = html + '        </p>';
  html = html + '';
  html = html + '        <p>Clicking on the query link initiates an ISSN search of the';
  html = html + '	<i>PubList</i> database; the ISSN is the International Standard Serial';
  html = html + '	Number, a number that uniquely identifies a periodical.  A successful';
  html = html + '	database query returns additional bibliographic information, as well';
  html = html + '	as publisher and indexing information, about the periodical.';
  html = html + '	</p>';
  html = html + '';
  html = html + getDisclaimerMessage();
  html = html + '';
  html = html + '        <!-- End Content -->';
  html = html + '        </td>';
  html = html + '</tr>';
  html = html + '</table>';
  html = html + '</body>';
  html = html + '</html>';
  return html;
}
