function explain_allmusicguide_html() {
  html = '';
  html = html + '<html>';
  html = html + '<head>';
  html = html + '	<title>All Music Guide</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>All Music Guide</i></i></b>';
  html = html + '	<!-- Begin Content  -->';
  html = html + '';
  html = html + '        <p>The <i>All Music Guide</i> (http://allmusic.com/) has a';
  html = html + '        searchable database containing information about music.  The';
  html = html + '        information content provider is All Media Guide (AMG), a company';
  html = html + '        that provides entertainment descriptive content and content management';
  html = html + '        technology, and whose parent company is Alliance Entertainment Corp.';
  html = html + '        </p>';
  html = html + '';
  html = html + '        <p>Clicking on the query link initiates an album title search of the';
  html = html + '        <i>All Music Guide</i> database.  A successful database query returns';
  html = html + '        a review, song list, production credits, format releases, cover art,';
  html = html + '	and other information about the album, including numerous internal';
  html = html + '	links to additional information that is related to the album.';
  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;
}
