 <!--
	/*
		Disable right click script II (on images)- By Dynamicdrive.com
		For full source, Terms of service, and 100s DTHML scripts
		Visit http://www.dynamicdrive.com
	*/

	function disableContextMenu() 
	{
		var doc = document.getElementsByTagName('img');
		for (var i = 0; i < doc.length; i++)
		{
			doc[i].oncontextmenu = function() 
			{
				alert ("The content is copyrighted.");
				return false;
			}
		}
	}
	
	onload = function()
	{
		disableContextMenu();
	}
	
//-->
