function Build_Menu (menu, l2open, active) {
  // menu = determines which menu to build
  // l2open = if any lower level menu is to be open
  // active = name of any menu item that is selected (i.e. not active)
  if (menu == 'main') {
    document.write("<TR VALIGN=\"TOP\"><TD CLASS=\"mainmenu\">COWZER SITES</TD></TR>");
    if (active == 'home')
      document.write("<TR VALIGN=\"TOP\"><TD CLASS=\"submenua\">www.cowzer.com</A></TD></TR>");
      else document.write("<TR VALIGN=\"TOP\"><TD CLASS=\"submenu\" ONMOUSEOVER=\"this.style.backgroundColor='#CCCCCC';\" ONMOUSEOUT=\"this.style.backgroundColor='#FFFFFF';\"><A HREF=\"http://www.cowzer.com\" CLASS=\"menu\">www.cowzer.com</A></TD></TR>");
    document.write("<TR VALIGN=\"TOP\"><TD CLASS=\"submenu\" ONMOUSEOVER=\"this.style.backgroundColor='#CCCCCC';\" ONMOUSEOUT=\"this.style.backgroundColor='#FFFFFF';\"><A HREF=\"http://www.cowzer.com/cowzer\" CLASS=\"menu\">Cowzer Family History</A></TD></TR>");
    document.write("<TR VALIGN=\"TOP\"><TD CLASS=\"submenu\" ONMOUSEOVER=\"this.style.backgroundColor='#CCCCCC';\" ONMOUSEOUT=\"this.style.backgroundColor='#FFFFFF';\"><A HREF=\"http://www.cowzer.com/lg\" CLASS=\"menu\">Lorna's Wedding</A></TD></TR>");
    document.write("<TR VALIGN=\"TOP\"><TD CLASS=\"submenu\" ONMOUSEOVER=\"this.style.backgroundColor='#CCCCCC';\" ONMOUSEOUT=\"this.style.backgroundColor='#FFFFFF';\"><A HREF=\"http://www.cowzer.com/oe\" CLASS=\"menu\">Owen's Wedding</A></TD></TR>");
    document.write("<TR VALIGN=\"TOP\"><TD CLASS=\"submenu\" ONMOUSEOVER=\"this.style.backgroundColor='#CCCCCC';\" ONMOUSEOUT=\"this.style.backgroundColor='#FFFFFF';\"><A HREF=\"http://www.dsdac.com\" CLASS=\"menu\">DSD Athletic Club</A></TD></TR>");
    document.write("<TR VALIGN=\"TOP\"><TD CLASS=\"submenu\" ONMOUSEOVER=\"this.style.backgroundColor='#CCCCCC';\" ONMOUSEOUT=\"this.style.backgroundColor='#FFFFFF';\"><A HREF=\"http://www.cowzer.com/athletics\" CLASS=\"menu\">Athletics Photo Gallery</A></TD></TR>");
  }
}
//     Code for expanding sub levels - place wherever a sublevel menu exists.
//     if (l2open == 'xxxx') {
//       // put expanded level two menu here
//     }

