// --------------------------------------------------------------------------------------------------------------------------------------------
// Javascript to protect page images from being copied/saved
// --------------------------------------------------------------------------------------------------------------------------------------------

function noRightClick(e) {
	if (document.layers || document.getElementById && !document.all) {
		if (e.which == 2 || e.which == 3) {
			document.captureEvents(Event.MOUSEDOWN);
			return false;
		}
	} else if (document.all && !document.getElementById) {
		if (event.button == 2) {
			return false;
		}
	}
	document.onmousedown = null;
}

function noContextMenu(e) {
	return false;
}

function noClip(e) {
	if(document.all && navigator.userAgent.indexOf("MSIE 7") == -1) {
		window.clipboardData.setData("Text", "");
	} 
	return true;
}

document.onblur = noClip;
document.onmousedown = noRightClick;
document.oncontextmenu = noContextMenu;
