// 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 ; 
  }
}
function disableselect(e){
return false
}
function reEnable(){
return true
}
//if IE4+
document.onselectstart=new Function ("return false")
//if NS6
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
// Set the message for the alert box
am = "© Nivam B.V.";
// do not edit below this line
// ===========================
bV  = parseInt(navigator.appVersion)
bNS = navigator.appName=="Netscape"
bIE = navigator.appName=="Microsoft Internet Explorer"
function nrc(e) {
   if (bNS && e.which > 1){
      alert(am)
      return false
   } else if (bIE && (event.button >1)) {
     alert(am)
     return false;
   }
}
document.onmousedown = nrc;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (bNS && bV<5) window.onmousedown = nrc;

