/*
	Disable Select JavaScript found at http://www.felgall.com/jstip35.htm
*/
	document.onselectstart = new Function('return false');
	function ds(e) {
		return false;
	}
	function ra() {
		return true;
	}
	document.onmousedown = ds;
	document.onclick = ra;

