document.body.ondragstart = "return false";
document.body.onselectstart = "return false";

/*
window.document.onmousedown = TestClick;
*/
function TestClick() 
{ 
	if(event.button == 2 || event.button == 3)
	{ 
		event.returnValue = null;
		if(window.navigator.appName.match(/opera/gi))
			alert('Na těchto stránkách je zakázáno použít pravé tlačíko myši');
		return false;
	}
};

/*
onbeforecopy = CancleCopy
*/
function CancleCopy()
{
	document.selection.empty();		
	return false;
}

window.document.oncontextmenu = function() { event.returnValue = null; };
