IfI'm not allowed to post code from another site, please accept my apologies and delete this

aranoid:
I have this script from Dynamic Drive and it blocks you from selecting text. Is there any way to apply this on VB per usergroup? Any ideas? Thank for your help
PHP Code:
<script language="JavaScript1.2">
//Disable select-text script (IE4+, NS6+)- By Andy Scott
//Exclusive permission granted to Dynamic Drive to feature script
//Visit [url]http://www.dynamicdrive.com[/url] for this script
function disableselect(e){
return false
}
function reEnable(){
return true
}
//if IE4+
document.onselectstart=new Function ("return false")
//if NS6
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
</script>