No right click

Try it out - you can't right click on this page without getting an alert message to tell you that such a thing doesn't work here.

Here's the code:

<script language="Javascript1.2"> 

<!--
var ppcmymessage = "That won't work here, I'm afraid";

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
}

function ppcrtclickcheck(keyp){

if (document.layers && keyp.which != 1) {
alert(ppcmymessage);
return false;
}


if (document.all && event.button != 1) { 
alert(ppcmymessage);
return false;
}
}

document.onmousedown = ppcrtclickcheck
//-->
</script>

It's very short and simple. Simply copy the text from the intro page you've just come from and paste it into the <head> section of any page you want protected.

Click here to get back to it.

counter