function init()
{
	for (i=0;i<document.images.length;i++)
	{
		document.images[i].oncontextmenu=blockCopyAttempt;
	}
}


function blockCopyAttempt()
{
	alert('This image is protected by copyright.\nWe request you not to copy it.');
	return false;
}
