	 <!-- 
	var message="Sorry, right click function has been disabled!\n\nTexts and images on this site are protected by copyright law and are not for public use.\n\nNo part of this web page may be reprinted or distributed in any medium or format without our express written consent.\n\nTip: To open links in a new window you can use Shift + click"; 
	
	function click(e) {
		if (document.all) {
			if (event.button == 2) {
				alert(message);
				return false;
			}
		}

		if (document.layers) {
			if (e.which == 3) {
				alert(message);
				return false;
			}
		}
	}

		if (document.layers) {
			document.captureEvents(Event.MOUSEDOWN);
		}
	
		document.onmousedown=click;
	
	// --> 
