<!-- Begin

function blockError(){return true;}
window.onerror = blockError;



<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

// Script improved 4 Apr 2008 by code from:
//        http://www.reconn.us/content/view/36/45/

<!-- Begin
var isNS = (navigator.appName == "Netscape") ? 1 : 0;
if(navigator.appName == "Netscape") document.captureEvents(Event.MOUSEDOWN||Event.MOUSEUP);

function mischandler(){
	return false;
}
	
function protect(e) {
	var myevent = (isNS) ? e : event;
	var eventbutton = (isNS) ? myevent.which : myevent.button;
	if((eventbutton==2)||(eventbutton==3)) {
		alert("Sorry, you don't have permission to right-click.");
		return false;
	}
}

function trap() {
	if(document.images)
	for(i=0;i<document.images.length;i++)
	document.images[i].onmousedown = protect;
}

// -->