function genHead(hname, wt, earn) {
	document.writeln('<html><head><title>Horse Racing Data Server</title></head>');
	document.write('<META NAME="keywords" CONTENT="horse racing,horses,betting,gambling,');

	document.writeln(hname + '"><body>');
	document.writeln('<font size=3><a href="../index.html">[ Home ]</a>');
	document.writeln('<a href="../../jockey/index.html">[ Jockey List ]</a>');
	document.writeln('<a href="../../horse/index.html">[ Horse List ]</a>');
	document.writeln('<a href="../../track/index.html">[ Tracks ]</a>');
	document.writeln('<a href="../../predict/index.html">[ Race Predictions ]</a>');
	document.writeln('<a href="http://www.jai-tech.com" target="_blank">["Calculated Bets"]</a>');
	document.writeln('<a href="../../faq.html\">[ Legends ]</a></font>');
     	document.writeln('<center><h3>Horse Racing Data Server</h3>');
     	document.writeln('<p>The Horse Racing Data Server collects horse racing data and '+
     		'tries to predict (for fun) of the outcome of every race. '+
      	'Here is what we know about '+ hname +
     		'. Check out our <a href=../../predict/index.html>race predictions'+
     		'</a></p><br>');
	document.writeln('<BR>Jockey\'s name:<b> 	' + hname + '</b>');
     	document.writeln('<br><br>Weight Carried: ' + wt);
     	document.writeln('<BR>Total Earnings: ' + earn);
      document.writeln('<br><br><table border=1>');
     	document.writeln('<tr><td>Date</td><td>Track</td><td>Race</td><td>'+
     		'Post Position</td><td>Jockey</td><td>Length</td><td>Finish</td></tr>');

}

function genTail() {
	document.writeln('</table>');
	document.writeln('<br><br><div align="center">');
	document.writeln('  <table border="0" width="15%">');
	document.writeln('    <tr>');
	document.writeln('      <td width="100%" valign="middle" '+
		'align="center" bgcolor="#0000FF"><a href="http://www.jai-tech.com">'+
		'<img border="0" src="../../cover.jpg" width="140" '+
		'height="201" alt="http://www.jai-tech.com"></a></td>');
	document.writeln('    </tr>');
	document.writeln('  </table>');
	document.writeln('</div><p><a href=../../disclaimer.html>Discliamer</a></p>');
     	document.writeln('<IMG SRC="/skiena-cgi-bin/ax.pl?jockeyrecord.gif"></body></html>');
}
