function explain_barnesandnoble_html() {
  html = '';
  html = html + '<html>';
  html = html + '<head>';
  html = html + '	<title>Barnes and Noble</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>Barnes and Noble</i></i></b>';
  html = html + '';
  html = html + '	<!-- Begin Content  -->';
  html = html + '        <p><i>Barnes and Noble</i> (http://www.bn.com/) has a searchable';
  html = html + '        database containing information about books, music, and videos.';
  html = html + '        The information content provider is Barnes and Noble, Inc., a';
  html = html + '	bookseller company.';
  html = html + '        </p>';
  html = html + '';
  html = html + '        <p>Clicking on the query link initiates an ISBN search of the';
  html = html + '        <i>Barnes and Noble</i> database; the ISBN is the International';
  html = html + '	Standard Book Number, a number that uniquely identifies a book,';
  html = html + '	including a particular edition and publisher if applicable for that';
  html = html + '	title.  A successful database query returns a publisher\'s blurb,';
  html = html + '	reviews, cover art, table of contents, an excerpt, and other';
  html = html + '	information about the book, including internal links to additional';
  html = html + '	information that is related to the book.';
  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;
}
