// no_right_click.js

/*
hp_ok=true;

function hp_d00(s){
	if(!hp_ok)return;
	document.write(s)
}

function hp_ne(){
	return true
}
onerror=hp_ne;

function hp_cm(){
	document.location.href="/_paypal_donate.html";
	return false
}
function hp_md(e){
	if(e.which==2||e.which==3){
		hp_cm
	}
}

if(navigator.appName.indexOf('Internet Explorer')==-1||navigator.userAgent.indexOf('MSIE')!=-1){
	if(document.all){
		document.oncontextmenu=hp_cm
	}
	if(document.layers){
		document.captureEvents(Event.MOUSEDOWN);
		document.onmousedown=hp_md
	}
	if(document.getElementById&&!document.all){
		document.oncontextmenu=hp_cm
	}
}

*/
