//JavaScript to write the beginning of each Pedigree Tree page
function w(str){document.writeln(str)}
w('</head>');
w('<body bgcolor=#FFFFF8>');
w('<center>');
w('<table width=75% border=10>');
w(' <tr><td>');
w('  <table width=100% cellpadding=0 cellspacing=0 border=0>');
w('   <tr><td bgcolor=#C0C0FF align=center><font size=+1 color=red><i>The Genealogy of Walter John Gilbert</i><hr><font color=#FFFFF8>Pedigree Tree</font></td></tr>');
w('  </table>');
w(' </td></tr>');
w('</table>');
w('<hr><font size=1 face=ariel,helvetica><a href='+up+'>UP</a> &nbsp; &nbsp; <a href='+dn+'>DOWN</a></font>');
w('<table border=0 cellspacing=0 cellpadding=0 width=100%>');
w(' <tr><th width=17% align=right bgcolor=#C0C0FF><font color=#FFFFF8>Generations:</th>');
w('  <th width=7% align=left bgcolor=#FFFFF8><font color=#FFFFF8>ions:</th>');
w('  <th width=7% align=left bgcolor=#FFFFF8><font color=#FFFFF8>ions:</th>');
w('  <th width=64%>&nbsp;</th>');
w('  <th width=5% bgcolor=#FFFFF8><font size=-1 face=ariel,helvetica color=#FFFFF8><i>next</i>&nbsp;&gt;&nbsp;&gt;</th>');
w(' </tr>');
w(' <tr align=center>');
w('  <th bgcolor=#C0C0FF><font color=red>'+(gen  )+'</th>');
w('  <th bgcolor=#D0D0FF><font color=red>'+(gen+1)+'</th>');
w('  <th bgcolor=#E0E0FF><font color=red>'+(gen+2)+'</th>');
w('  <th bgcolor=#E8E8FF><font color=red>'+(gen+3)+'</th>');
w(' </tr>');
// End of JavaScript
