// This JavaScript code is from LCHE 
// Copyright 2007 by London College for Higher Education, London, UK
// No Right Click: Good for protecting  information, stories, poems, etc. Prevents mouse highlighting
 
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
}
