var omitformtags=['input', 'textarea', 'select']

omitformtags=omitformtags.join('|')

function disableselect(e){
if (omitformtags.indexOf(e.target.tagName.toLowerCase())==-1)
return false
}

function reEnable(){
return true
}

if (typeof document.onselectstart!='undefined')
document.onselectstart=new Function ('return false')
else{
document.onmousedown=disableselect
document.onmouseup=reEnable
}

message = "© Copyright 2008 Connecticut Council of Trout Unlimited";



function NoRightClick(b) {
   if(((navigator.appName=="Microsoft Internet Explorer")&&(event.button > 1))
   ||((navigator.appName=="Netscape")&&(b.which > 1))){
   alert(message);
   return false;
   }
}
document.onmousedown = NoRightClick;

function ParaOver(Cao) {
  Cao.style.backgroundColor="D5DEDC";
  
}
function ParaOut(Cao) {
  Cao.style.backgroundColor="transparent";
  
}