var message="The content on this page is copyrighted\n and may not be copied.";
function trapIE4(){
	if (event.button==2){
		alert(message);
		return false;
	}
}
function trapNS4(e){
	if (document.getElementById&&!document.all||document.layers){
		if (e.which==2||e.which==3){
			alert(message);
			return false;
		}
	}
}
if (document.layers){
	document.captureEvents(Event.MOUSEDOWN);
	document.onmousedown=trapNS4;
}
else if (document.all&&!document.getElementById){
	document.onmousedown=trapIE4;
}
document.oncontextmenu=new Function("alert(message);return false")
