// helps to prevent users from highlighting and copying text
function noHighlight(e){
   return false
}

function returnTrue(){
   return true
}

document.onselectstart=new Function ("return false")

if (window.sidebar){
  document.onmousedown=noHighlight
  document.onmouseup=returnTrue
}

