//------------------------        ABILITA TESTO         --------------------//
function disableSelection(target){
	if (typeof target.onselectstart!="undefined"){ //IE
		target.onselectstart=function(){
			return false
		}
		target.style.cursor = "default";
	}
	else if (typeof target.style.MozUserSelect != 'undefined' ){ //Firefox
		target.onmousedown=function(){
			return false
		}
		target.style.cursor = "default"
	}
	else { //Opera
		target.onmousedown=function(){
			return false
		}
		target.style.cursor = "default"
	}
}
//---------------------------------------------------------------------------//
function enableSelection(target){
	if (typeof target.onselectstart!="undefined"){ //IE
		target.onselectstart=function(){
			return true
		}
		target.style.cursor = "default";
	}
	else if (typeof target.style.MozUserSelect != 'undefined' ){ //Firefox
		target.onmousedown=function(){
			return true
		}
		target.style.cursor = "default"
	}
	else { //Opera
		target.onmousedown=function(){
			return true
		}
		target.style.cursor = "default"
	}
}
