var msg = "Images, product themes, rhymes, wording, and design etc. on this site are\ncopyrighted material. Please respect copyright laws and do not copy or\ndisplay images from this website without express written permission from\nHighly Graphic, Inc.\n\nThank you.";

document.oncontextmenu = disableRightClick;
if (document.layers) {
	document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown = trapClick;

function disableRightClick() {
	return false;
}

function trapClick(ev) {
	if (document.all) {
		if (event.button == 2) {
			alert(msg);
			return false;
	        }
	}
	if (document.layers) {
		if (ev.which == 2) {
			alert(msg);
			return false;
		}
	}
	if (document.all) {
		if (event.button == 3) {
			alert(msg);
			return false;
		}
	}
	if (document.layers) {
		if (ev.which == 3) {
			alert(msg);
			return false;
		}
	}
}