function explain_internetmoviedatabase_html() {
  html = '';
  html = html + '<html>';
  html = html + '<head>';
  html = html + '	<title>Internet Movie Database</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>Internet Movie Database</i></i></b>';
  html = html + '	<!-- Begin Content  -->';
  html = html + '';
  html = html + '        <p>The <i>Internet Movie Database</i> (http://www.imdb.com/) has a';
  html = html + '        searchable database containing information about movies.  The';
  html = html + '	<i>Internet Movie Database</i> (IMDb) was started in 1990 on the';
  html = html + '	rec.arts.movies newsgroup, and in 1998 the IMDb became part of';
  html = html + '	Amazon.com, an online shopping company.';
  html = html + '	</p>';
  html = html + '';
  html = html + '        <p>Clicking on the query link initiates a movie title search of';
  html = html + '        the <i>Internet Movie Database</i>.  A successful database query';
  html = html + '	returns a plot outline, the cast, user comments and ratings, and other';
  html = html + '        information about the movie, including internal links to additional';
  html = html + '	information that is related to the movie.';
  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;
}
