// MENU FOR THIS SUB-SITE

function menu_heading(title) {
  document.write("<h1>");
  document.write(title);
  document.write("</h1>");
}

function menu_item(name, title) {
  if (thisPage != name) {
    document.write("<a href='./");
    document.write(name);
    document.write(".htm'>");
    document.write(title);
    document.write("</a>");
  }
  else {
    document.write("<b>");
    document.write(title);
    document.write("</b>");
  }
}

menu_heading("HULP BIJ HET GEBRUIK VAN FLUENCY TTS");
menu_item("index", "Instellingen");
menu_item("lexicon", "Woord toevoegen");
menu_item("registratie", "De software registreren");
menu_item("mp3", "MP3-bestanden maken");

menu_heading("HULP BIJ SPIKA");
menu_item("spika", "Spika gebruiken");

menu_heading("TUTORIAL");
menu_item("play", "Een hoorspel maken met Fluency TTS");


