//Disable right mouse click Script
//By Maximus (maximus@nsimail.com) w/ mods by DynamicDrive
//For full source code, visit http://www.dynamicdrive.com

var message="De rechter muistoets is hier niet beschikbaar...\n\n Wil je graag een foto of een afbeelding hebben stuur dan een mail naar emmo@radiomuziekland.com  Bedankt."; // Message for the alert box

////////////// No editing below this line /////////////////////
function clickRight() {
  if (event.button==2) {
    alert(message);
    return false;
  }
}


if (document.getElementById) { // Only 1f DOM-compliant
  document.onmousedown=clickRight;
}

document.oncontextmenu=new Function("alert(message);return false")

