
function topmenus(homedir)
{ TopMenu(homedir, "History",  "Histories of Towcester");
  TopMenu(homedir, "A tour ...", "A Towcester tour ...");
  TopMenu(homedir, "People", "People of Towcester");
  TopMenu(homedir, "Places", "Places in Towcester");
  TopMenu(homedir, "Families", "Towcester Family History");
  TopMenu(homedir, "The Society", "Towcester and District<br />Local History Society");
}

var menu_id=0;
function TopMenu(homedir, horiztitle, droptitle)
{ document.write('<div class="mmenu">');
  document.write('<ul><li><a href="aaa'+menu_id+'.html" class="menudrop">&nbsp;'+horiztitle+'&nbsp;</a>');
  document.write('<ul class="dropmenu" id="aaa'+menu_id+'">');
  document.write('<li><a><b>'+droptitle+'</b></i></a></li>');
  switch(horiztitle){
    case "History":     HistoryMenu(homedir); break;
    case "A tour ...":  TourMenu(homedir); break;
    case "People":      PeopleMenu(homedir); break;
    case "Places":      PlacesMenu(homedir); break;
    case "Families":    FamiliesMenu(homedir); break;
    case "The Society": SocietyMenu(homedir); break;
    default:
  }
  document.write('</ul></li></ul></div>');
  menu_id++;
}

function additem(dest,linkname){ 
  document.write('<li><a href="'+dest+'.html">'+linkname+'</a></li>');
}

function HistoryMenu(homedir){
additem(homedir+"History/Chronology/Chronology", "Time Line Chronology");
additem(homedir+"History/History/History_1795",  "A history written in 1795");
additem(homedir+"History/Whellan/index",         "A history written in 1849");
additem(homedir+"History/History/History_1930",  "A history written in 1930s");
additem(homedir+"History/History/History_1998",  "A history written in 1998");
additem(homedir+"Places/BuryMount/Top15",        "The top 15 historical events");
additem(homedir+"TDLHS/Links",                   "Towcester history external links");
additem(homedir+"People/index",                  "Towcester people ...");
additem(homedir+"Places/index",                  "Towcester places ...");
additem(homedir+"FamHist/FamHist",               "Towcester family history ...");
}

function TourMenu(homedir){
additem(homedir+"Places/Drawings/index",         "... illustrated with line drawings");
additem(homedir+"Places/Plaques/index",         "... of the Millennium plaques");
additem(homedir+"Places/StLawrence/Tour/index", "... of St.Lawrence Church");
}

function PeopleMenu(homedir){
additem(homedir+"Places/Plaques/Cinema",            "Thomas Bickerstaffe (17c)");
additem(homedir+"People/PopeBoniface/index",        "Pope Boniface VIII (c.1235-1303)");
additem(homedir+"People/RichardEmpson/index",       "Sir Richard Empson (c.1450-1510)");
additem(homedir+"People/GilbertFlesher1772/index",  "Gilbert Flesher (1772-1845)");
additem(homedir+"People/JamesMasonHutchings/index", "James Mason Hutchings (1820-1902)");
additem(homedir+"ComingSoon",                       "Thomas Lord (c.1582-c.1655)");
additem(homedir+"ComingSoon",                       "Thomas Shepard (1605-1639)");
additem(homedir+"People/ArchdeaconSponne/index",    "Archdeacon William Sponne (?-1448)");
additem(homedir+"People/index",                     "more Towcester people ...");
}

function PlacesMenu(homedir){
additem(homedir+"Places/Plaques/NEBaptist",      "Baptist Chapel (1853)");
additem(homedir+"Places/Plaques/Cinema",         "Bickerstaffes Almshouses (1689)");
additem(homedir+"Places/BuryMount/index",        "Bury Mount (c.1185)");
additem(homedir+"Places/Drawings/Draw6",         "Chain Gate (1824)");
additem(homedir+"Places/Drawings/Draw3",         "Chantry House (c.1447)");
additem(homedir+"Places/Cinema/index",           "Cinema (1939)");
additem(homedir+"Places/Plaques/NatSchool",      "National School (1849)");
additem(homedir+"Places/Drawings/Draw3",         "Post Office (1799)");
additem(homedir+"Places/Drawings/Draw5",         "Saracen\'s Head (18c)");
additem(homedir+"Places/Drawings/Draw4",         "Town Hall (1865)");
additem(homedir+"Places/StLawrence/index",       "St.Lawrence Church (120,1200,1490)");
additem(homedir+"Places/TowGrammarSchool/index", "Sponne School (1928,1993)");
additem(homedir+"Places/TowMill/index",          "The Water Mill (1799)");
additem(homedir+"Places/index",                  "more Towcester places ...");
}

function FamiliesMenu(homedir){
additem(homedir+"FamHist/Christenings/index",    "Baptisms (1714-1777)");
additem(homedir+"FamHist/Marriages/index",       "Marriages (1714-1751)");
additem(homedir+"FamHist/Burials/index",         "Burials (1678-1725)");
additem(homedir+"FamHist/Cemetery/index",        "Burials (1885-1939)");
additem(homedir+"FamHist/Wills/Wills",           "Wills (1724-1856)");
additem(homedir+"FamHist/FamHist",               "more Towcester family history ...");
}

function SocietyMenu(homedir){
additem(homedir+"TDLHS/AboutUs",      "About us");
additem(homedir+"TDLHS/Speakers",     "Programme of meetings");
additem(homedir+"TDLHS/Publications", "Publications");
additem(homedir+"TDLHS/ContactUs",    "Contact us");
additem(homedir+"TDLHS/Links",        "External links");
additem(homedir+"TDLHS/SiteMap",      "Site map");
additem(homedir+"TDLHS/Copyright",    "Copyright");
additem(homedir+"TDLHS/Hints",        "Hints on using this web site");
}



