<!--
/*
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
*/

var clickmessage="Right click disabled on images!"

function disableclick(e) 
{
	if (document.all) 
	{
		if (event.button == 2 || event.button == 3) 
			if (event.srcElement.tagName == "IMG")
			{
				alert(clickmessage);
				return false;
			}
	}
	else if (document.layers)
	{
		if (e.which == 3) 
		{
			alert(clickmessage);
			return false;
		}
	}
	else if (document.getElementById)
	{
		if (e.which == 3 && e.target.tagName == "IMG")
		{
			alert(clickmessage)
			return false
		}
	}
}

function associateimages()
{
	for(i=0;i<document.images.length;i++)
		document.images[i].onmousedown = disableclick;
}

if (document.all)
	document.onmousedown = disableclick;
else if (document.getElementById)
	document.onmouseup = disableclick;
else if (document.layers)
	associateimages()

/*
function right(e) 
{
	if (navigator.appName == 'Netscape' && (e.which == 2 || e.which == 3)) 
	{
		alert('This image is copyright protected');
		return false;
	}
	else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button==2 || event.button == 3)) 
	{
		alert('Sorry! Right Click Is Protected');
		return false;
	}
	return true;
}

document.onmousedown=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=right;
*/
// -->
