function explain_moviereviewqueryengine_html() {
  html = '';
  html = html + '<html>';
  html = html + '<head>';
  html = html + '	<title>Movie Review Query Engine</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>Movie Review Query Engine</i></i></b>';
  html = html + '	<!-- Begin Content  -->';
  html = html + '';
  html = html + '        <p>The <i>Movie Review Query Engine</i> (http://www.mrqe.com/) has a';
  html = html + '	searchable database containing links to movie reviews from a variety';
  html = html + '	of sources.  The database and search engine were created by Stewart M.';
  html = html + '	Clamen. ';
  html = html + '        </p>';
  html = html + '';
  html = html + '        <p>Clicking on the query link initiates a movie title search of the';
  html = html + '        <i>Movie Review Query Engine</i> database.  A successful database';
  html = html + '	query returns a list of external links to reviews of the movie.';
  html = html + '        </p>';
  html = html + getDisclaimerMessage();
  html = html + '        <!-- End Content -->';
  html = html + '        </td>';
  html = html + '</tr>';
  html = html + '</table>';
  html = html + '</body>';
  html = html + '</html>';
  return html;
}
