Solution
This block of JavaScript code might help you.
One more thing is that this should be placed in the <head> </head> tag in your HTML file, this will completely prevent users from right clicking anywhere on your website.
This code should work for internet explorer and Netscape browser. For Firefox, you might want to test it out.
-Users can "escape" from this code by simply disabling JavaScript in their browser. Might want to find a better code.
You can modify this code how ever you want to fit what you need (e.g new alert sounds)
<SCRIPT LANGUAGE="JavaScript"><!--
var message = 'Please respect our Copyright.' ;
function clickie() {
if (document.all) {
alert(message);
return false; } }
function clickns(e) {
if (document.layers||(document.getElementById&&!document.all)) {
if (e.which==2 || e.which==3) {
alert(message);
return false; } } }
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickns;
} else {
document.onmouseup=clickns;
document.oncontextmenu=clickie;
}
// --></SCRIPT>
I did not create this by whatever means, this work belongs to
http://www.graphicsacademy.com/howto_preventcopy1.php