// JavaScript Document
//Disable Text Selection

window.onload = function() {
	document.onselectstart = function() {return false;}
	document.onmousedown = function() {return false;}
}