// disable ability to copy text off of page
// this should be one of two JS functions loaded
// the other should be to disable the "Right Click"
// Kit Creighton - www.LHMG.net

<!-- begin
function disableselect(e){
return false;
}
function reEnable(){
return true;
}
document.onselectstart=new Function ("return false");
if (window.sidebar){
document.onmousedown=disableselect;
document.onclick=reEnable;
}
// end -->