The modified script doesn't disable the text selection.
Code:
<script type="text/javascript">
function disableSelection(target){
if (typeof target.onselectstart!="undefined") //IE route
target.onselectstart=function(){return false}
else if (typeof target.style.MozUserSelect!="undefined") //Firefox route
target.style.MozUserSelect="none"
else //All other route (ie: Opera)
target.onmousedown=function(){
var txt=(window.getSelection)? window.getSelection().toString():document.selection.createRange().text;
if(txt) return false;//if any text if selected
}
</script>
Bookmarks