<!-- **************************************************************************-->
<!-- * Version	   : Version 1.0                                            *-->
<!-- * Author  	   : Daniel Affleck                                         *-->
<!-- * Description   : Stops the right mouse button click and display message *-->
<!-- * Date    	   : 25/06/01                                               *-->
<!-- * Time    	   : 00.56                                                  *-->
<!-- **************************************************************************-->

	if (window.Event)
  		document.captureEvents(Event.MOUSEUP);

	<!-- Stop the context menu from appearing -->

	function nocontextmenu() {
  		event.cancelBubble = true, event.returnValue = false;
  		return false;
	} 

	<!-- Disable the right click -->

	function norightclick(e) {
  		if (window.Event) {
    			if (e.which == 2 || e.which == 3) return false;
  		}
  		else if (event.button == 2 || event.button == 3) {
    			event.cancelBubble = true, event.returnValue = false;
			alert ("Sorry, but the material on this website is Copyrighted!   ");
    			return false;
  		}
	}

	if (document.layers)
  		document.captureEvents(Event.MOUSEDOWN);

	document.oncontextmenu = nocontextmenu;
	document.onmousedown = norightclick;
	document.onmouseup = norightclick;
