// 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("FLUENCY TTS");
menu_item("index", "Inleiding");
menu_item("download", "Downloaden");
menu_item("bestellen", "Bestellen");
menu_item("specs", "Technische specificaties");

menu_heading("GEAVANCEERD");
menu_item("netwerk", "Fluency TTS op een netwerk installeren");
menu_item("linux", "Fluency TTS draaien onder Linux");

