function explain_google_html() {
  html = '';
  html = html + '<html>';
  html = html + '<head>';
  html = html + '	<title>Google</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>Google</i></i></b>';
  html = html + '	<!-- Begin Content  -->';
  html = html + '';
  html = html + '        <p><i>Google</i> (http://www.google.com/) has a "Books" category search';
  html = html + '	feature within the Google Web Directory that results in a more refined';
  html = html + '	search for book-related material on the World Wide Web; this feature';
  html = html + '	uses Google\'s search ranking algorithms to search Web pages that are';
  html = html + '	part of the Open Directory Project.  <i>Google</i> is one of the';
  html = html + '	leading Internet search engines, and a privately held company with';
  html = html + '	various investors.  The Open Directory Project (http://dmoz.org/) is';
  html = html + '	a collaborative open source project to evaluate and classify Web sites';
  html = html + '	into subject categories.';
  html = html + '        </p>';
  html = html + '';
  html = html + '        <p>Clicking on the query link initiates a "focussed" title and author';
  html = html + '	surname search of Open Directory Web pages using the <i>Google</i>';
  html = html + '	search engine; a successful database query returns a list of hypertext';
  html = html + '	links to Web pages that contain both the book\'s title and author\'s';
  html = html + '	surname.';
  html = html + '        </p>';
  html = html + '';
  html = html + '        <!-- End Content -->';
  html = html + '        </td>';
  html = html + '</tr>';
  html = html + '</table>';
  html = html + '</body>';
  html = html + '</html>';
  return html;
}
