/*
 * Implementation to disbaled the following events:
 *
 * - Mouse Right Click
 * - Context Menu
 * - Selection Text and Picture
 * - Drag Start
 */

var message     = "It’s strictly forbidden to copy the content from this website without a written authorization by Maison Radical inc.";
var showMessage = false;

function clickIE4()
{
	if (event.button==2)
	{
		if (! event.srcElement.isTextEdit || event.srcElement.tagName == "BODY")
		{
			if (showMessage) alert(message);
			return false;
		}
	}
}

function clickNS4(e)
{
	if (document.layers || document.getElementById && ! document.all)
	{
		if (e.which == 2 || e.which == 3)
		{
			if (showMessage) alert(message);
			return false;
		}
	}
}

function selectStartIE4()
{
	// Protect only Images
	if (event.srcElement.tagName != "A")
	{
		if (! event.srcElement.isTextEdit)
		{
			if (showMessage) alert(message);
			return false;
		}
	}
}

function onDragStart()
{
	// Protect only Images
	if (event.srcElement.tagName != "A")
	{
		if (! event.srcElement.isTextEdit)
		{
			if (showMessage) alert(message);
			return false;
		}
	}
}

function onContextMenu()
{
	if (! event.srcElement.isTextEdit || event.srcElement.tagName == "BODY")
	{
		if (showMessage) alert(message);
			return false;
	}
}

if (document.layers) 
{
	// Netscape 4+
	document.captureEvents(Event.MOUSEDOWN);
	document.onmousedown = clickNS4;
}
else if (document.all)
{
	// IE 4+
	document.onmousedown = clickIE4;
	document.onselectstart = selectStartIE4;
	document.oncontextmenu = onContextMenu;
	document.ondragstart   = onDragStart;
}
