var ErrMsg = "Sorry - The site innards belong to Tulsa Shuffle L.D.C.";

function noRightClick() {
	if (event.button==2) {
		alert(ErrMsg);
	}
}

document.onmousedown=noRightClick;

