//////



//Disable right mouse click Script



var norightclick_bShowPopup = true;
var norightclick_message = "Don't be a Napster, do the right thing & ask for permission to copy photos or I will Seek & Destroy !! All Rights Reserved Copyright © Metallicallector.com - IP address tracking in progress";



function norightclick_clickIE4()
{
	if (event.button==2)
	{
		if (norightclick_bShowPopup)
		{
			alert(norightclick_message);
		}
		return false;
	}
}

function norightclick_clickNS4(e)
{
	if (document.layers||document.getElementById&&!document.all)
	{
		if (e.which==2||e.which==3)
		{
			if (norightclick_bShowPopup)
			{
				alert(norightclick_message);
			}
			return false;
		}
	}
}

function norightclick_ContextMenuHandler()
{
	if (norightclick_bShowPopup)
	{
		alert(norightclick_message);
	}
	return false;	
}



if (document.layers)
{
	document.captureEvents(Event.MOUSEDOWN);
	document.onmousedown = norightclick_clickNS4;
}
else if (document.all&&!document.getElementById)
{
	document.onmousedown = norightclick_clickIE4;
}



document.oncontextmenu = norightclick_ContextMenuHandler;



//////

