function full_bib_return_explain3_html() {
  html = '';
  html = html + '<html>';
  html = html + '<head>';
  html = html + '	<title>Call Number</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="0" border="0">';
  html = html + '<tr>';
  html = html + '	<td></td>';
  html = html + '	<td>';
  html = html + '	<!-- Title -->';
  html = html + '	<b><i>Call Number</i></b>';
  html = html + '	<!-- Begin Content  -->';
  html = html + '	<p>Call numbers are used by libraries to file the material on the shelves in an organized fashion so they are easy to';
  html = html + '	locate.  They are based on the subject matter, author&lsquo;s last name, and other criteria.</p>';
  html = html + '	';
  html = html + '	<p>Different libraries may use different call numbers for the same item. Be sure to make note of the exact call number ';
  html = html + '	if you plan to pick up the item at the library.</p>';
  html = html + '';
  html = html + '	<p>Two popular call number systems are the Library of Congress Classification System used by many academic libraries.';
  html = html + '	Public libraries often use the Dewey Decimal System to assign call numbers.</p>';
  html = html + '';
  html = html + '	<!-- End Content -->';
  html = html + '	</td>';
  html = html + '</tr>';
  html = html + '</table>';
  html = html + '</body>';
  html = html + '</html>';
  return html;
}
