No right click (Javascript)
by spyka (http://www.spyka.net)
This code will disable your users from right clicking on your webpages. Change the message to what you want to tell your users when they right click.
Place code in the <head></head> tags of your page.
<script language="Javascript">
function no_rclick() {
var msg = 'Do not right click'; // Change
if (event.button == 2) {
alert(msg);
}
}
document.onmousedown=no_rclick;
</script>