function LoadGlobalFunctions(){
	var target = document.body;
	if (typeof document.body.onselectstart != "undefined") 
		document.body.onselectstart=function() { return false; }
	else if (typeof target.style.MozUserSelect != "undefined")
		document.body.style.MozUserSelect="none";
	else 
		document.body.onmousedown = function() { return false; }
	document.body.style.cursor = "default";
	document.oncontextmenu = function(){return false};
	document.ondragstart = function(){return false};
	document.onselectstart = function(){return false};
}