

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

var message2="********* Sorry, but the right mouse click function has been disabled, because I had some bad experience with hacking and copying of my webdesign. If you would like to use the content or pictures for personal or professional family history research please contact me and I wil send you the information or pictures you require, as long as credits are given. For further information about the use of materials from my website, read the disclaimer. Copyright © 1999-2006, Cees Kloosterman. ---------------------------------------------------------------------------------------------------------------  ********* Jammer, maar de rechter muis klik functie is uitgeschakeld, omdat ik enkele slechte ervaringen heb gehad met bezoekers die ongevraagd foto's en de code van het webontwerp hadden gedownload. Als u de inhoud of foto's voor persoonlijk gebruik of genelaogisch onderzoek wilt gebruiken, neem dan contact met mij op en ik zal u het gevraagde informatie toezenden, mits u vermeldt wat de bron is. Als u meer informatie wilt over het gebruik van materiaal van deze site, lees dan de disclaimer. Copyright © 1999-2006, Cees Kloosterman.";

///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message2);
return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message2);
return false;
}
}
}

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}

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

// --> 



