function explain_yahoomovies_html() {
  html = '';
  html = html + '<html>';
  html = html + '<head>';
  html = html + '	<title>Yahoo! Movies</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>Yahoo! Movies</i></i></b>';
  html = html + '	<!-- Begin Content  -->';
  html = html + '';
  html = html + '        <p><i>Yahoo! Movies</i> (http://movies.yahoo.com/) has a';
  html = html + '        searchable database containing information about movies.  The';
  html = html + '        information content provider is Yahoo!, an online global consumer';
  html = html + '        and business services company.';
  html = html + '        </p>';
  html = html + '';
  html = html + '        <p>Clicking on the query link initiates a movie title search of the';
  html = html + '        <i>Yahoo! Movies</i> database.  A successful database query returns';
  html = html + '        a plot outline, the cast, production credits, user reviews, 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;
}
