function laadFynst() {

var box = document.forms[0].kzvFynsten;

box[0]   = new Option("Kies een paddenstoel"       ,"",true);
box[1]   = new Option("antrodia serialis"          ,"fy_antrodia_serialis.html",false);
box[2]   = new Option("ciboria amentacea"          ,"fy_ciboria_amentacea.html",false);
box[3]   = new Option("collybia butyracea"         ,"fy_collybia_butyracea.html",false);
box[4]   = new Option("coprinus micaceus"          ,"fy_coprinus_micaceus.html",false);
box[5]   = new Option("cyathus striatus"           ,"fy_cyathus_striatus.html", false);
box[6]   = new Option("gomphidius roseus"          ,"fy_gomphidius_roseus.html", false);
box[7]   = new Option("hydnellum concrescens"      ,"fy_hydnellum_concrescens.html",false);
box[8]   = new Option("hygrocybe conica"           ,"fy_hygrocybe_conica.html",false);
box[9]   = new Option("laetiporus sulphureus"      ,"fy_laetiporus_sulphureus.html",false);
box[10]  = new Option("sarcoscypha coccinea"       , "fy_sarcoscypha_coccinea.html", false);
box[11]  = new Option("sclerotinia sclerotiorum"   ,"fy_sclerotinia_sclerotiorum.html",false);
box[12]  = new Option("tremella mesenterica"       ,"fy_tremella_mesenterica.html",false);
}


function toonFynst() {

var box = document.forms[0].kzvFynsten;
nummer = box.selectedIndex;
var pagina = box.options[nummer].value;

  if (nummer > 0) {
    window.location.href= pagina;
    window.reload();
  }
}

function openZoekscherm(genus, species) {
    var ref = "http://www.google.nl/search?hl=nl&q=" + genus + "+" + species + "&btnG=Zoeken&lr=";
    window.open(ref)
}

function linkActive(currentLink, bericht) {
    currentLink.className = "link_active";
}

function linkNotActive(currentLink) {
    currentLink.className = "link_notactive"
}   
