/*
Copyright (c) 2003 Ylab, Utrecht, NL
2003-05-16; yohan@ylab.nl: Created
*/

//trap error
window.onerror = function() {window.status = "Er is een fout opgetreden. Neem a.u.b. contact op met de webmaster."; return true;}

//init document
window.onload = windowOnLoad;

function windowOnLoad(){
  var a = document.links;
  var pos = document.location.href.lastIndexOf("/");
  var curFile = document.location.href.substring(pos);

  if (curFile == "/"){curFile = "/index.htm";}//root: default document
  for (var i=0; i < a.length; i++){
    pos = a[i].href.lastIndexOf("/");
    if (a[i].href.substring(pos) == curFile){
      a[i].className = "active";
    }
  }
  window.status = document.title;
}


