	<!--
		var msg = "Property of: The Wicked One!©\n\nWeb Design By:\nRMF System Solutions\nhttp://www.rmfsys.com";

		function click(e) {
			if (document.all) {
				// IE: L=1, R=2
				switch (event.button) {
					case 1:
						return true;
						break;
					case 2:
						alert(msg);
						return false;
				}
			}
			if (document.layers) {
				// NS: L=1, R=3
				switch (e.which) {
					case 1:
						return true;
						break;
					case 3:
						alert(msg);
						return false;
				}
			}
		}


		if (document.layers) {
			document.captureEvents(Event.MOUSEDOWN);
		}

		document.onmousedown=click;
	// --> 