<!--
function NoRightClick(e) 
{ 
   if(navigator.appName=="Netscape") 
   {
      if(e.which==3||e.which==2) 
      { 
         return false; 
      }
   }
   else 
   { 
      event.cancelBubble=true; 
      event.returnValue=false;
   }
}

if(navigator.appName=="Netscape") 
   window.captureEvents(Event.MOUSEDOWN)
document.oncontextmenu=NoRightClick; 
window.onmousedown=NoRightClick;
// -->
<!--
function killCopy(e){
return false
}
function reEnable(){
return true
}
document.onselectstart=new Function ("return false")
if (window.sidebar){
document.onmousedown=killCopy
document.onclick=reEnable
}
// -->
