window.onerror = function(){return true;}

document.onmousedown=function(e){

	if (typeof document.body.style.MozUserSelect!="undefined") {
		document.body.style.MozUserSelect="none";
	}

	if (document.all) {
		if (event.button==0||event.button==2) {
		}
	}


	if (e!=undefined) {
		if (e.which == 3) {
		}
	}

}

document.oncontextmenu = function(){return false;}
document.onselectstart = function(){return false;}
document.ondragstart   = function(){return false;}
document.oncopy        = function(){return false;}
document.onpaste       = function(){return false;}
document.oncut         = function(){return false;}