var topmenu = [
		['Home', 'http://dkwilde.com'],
		['Family History', 'http://dkwilde.com/Genealogy/'],
	        ['Photos', 'http://dkwilde.com/Photos.html'],
                ['Consulting', 'http://dkwilde.com/Consulting/'],
                ['Links', 'http://dkwilde.com/Links.html']
           ];


function
top_menu()
{ document.write('<td nowrap="nowrap" valign="bottom" align="right"> <b> |');
  for (var i=0; i<topmenu.length; i++)
  {
     document.write('&nbsp;<a href="');
     document.write(topmenu[i][1]);
     document.write('">');
     document.write(topmenu[i][0]);
     document.writeln('</a>&nbsp; |');
  }
  document.write('</b></td>');
}

function
header()
{
  document.writeln('<table  bgcolor="#F4EDC6" cellpadding="0" cellspacing="0" width="100%" border="0">');
  document.writeln('<tr><td width="350" rowspan="2"><img src="http://www.dkwilde.com/Genealogy/Genbanner.jpg" border="0" alt="Family History"></td></tr><tr>');
  top_menu();
  document.write('</tr> <tr><td><img src="pixel.gif" width="1" height="5" border="0"></td></tr></table>');
}

/* Footer */
function
footer()
{ document.writeln('<table bgcolor="#F4EDC6" cellpadding="3" cellspacing="0" width="100%" border="0" height="22">');
  document.writeln('<tr bgcolor="#4682B4">');
  document.writeln('<td nowrap><font color="white">Copyright &copy;2004-2008 DKWilde Engineering. All rights reserved.</font></td>');
  document.writeln('</tr></table>');
}

function
footer2()
{ 
  document.writeln('Copyright &copy;2004-2008 DKWilde Engineering. All rights reserved.');
}

