// JavaScript Document
function disableSelection(target){
	if (typeof target.onselectstart!="undefined") //IE részére
		target.onselectstart=function(){return false}
	else if (typeof target.style.MozUserSelect!="undefined") //Firefox részére
		target.style.MozUserSelect="none"
	else //Operának
		target.onmousedown=function(){return false}
		target.style.cursor = "default"
}