if (top.location != location) document.write("<style type=\"text/css\">a.niettonen{display : none !important;}<\/style>");
// statusregel a hrefs onderdrukken
function LeegStatus() { 
  for ( var count = 0 ; count < document.links.length; count++ ) {
    document.links[count].onmouseover = StatusTekst ;
    document.links[count].onmouseout = BlancoStatus ;
  }
}
// statusregel legen 
function BlancoStatus() { window.status = "" ; return true ; } 
// inhoud van de link op de statusregel zetten
function StatusTekst(evt) { 
  if (navigator.appName=="Microsoft Internet Explorer") {
    window.status = this.innerText;return true ;
  }
  else {
    window.status = evt.target.innerHTML;return true ; 
  }
}  

