function textLock() {
	document.body.onselectstart=function(){return false}
	document.body.style.MozUserSelect="none"
	document.body.onmousedown=function(){return false}
}
