		if (document.layers) {
			document.captureEvents(Event.MOUSEDOWN)
		}
		document.onmousedown = captureMousedown
		
		function captureMousedown(evt) {
			if (evt) {
				mouseClick = evt.which
			}
			else {
				mouseClick = window.event.button
			}
			
			if (mouseClick==2 || mouseClick==3) {
				alert("Sorry, can't let you do that! This page contains copyrighted material. It is copyrighted by Wolves and More. Please respect the copyright of others. Thank you!")
				return false
			}
		}

