// JavaScript Document
function hp_ne(){return true} onerror=hp_ne;

function hp_dn(a){return false}

function hp_cm(){
	alert('This section does not permit selection of text');
	return false}

function hp_md(e){
 if(e.which==2||e.which==3){
	 alert('This section does not permit selection of text');
  return false}
 if(e.which==1){
   window.captureEvents(Event.MOUSEMOVE);
   window.onmousemove=hp_dn
 }
}
 
function hp_mu(e){
 if(e.which==1){
  window.releaseEvents(Event.MOUSEMOVE);
  window.onmousemove=null}
}

if(navigator.appName.indexOf('Internet Explorer')==-1||navigator.userAgent.indexOf('MSIE')!=-1){
  if(document.all){
   document.oncontextmenu=hp_cm;
   document.onselectstart=hp_dn
  }
   
  if(document.layers){
   window.captureEvents(Event.MOUSEUP|Event.MOUSEDOWN);
   window.onmousedown=hp_md;
   window.onmouseup=hp_mu
  }
  
  if(document.getElementById&&!document.all){
   document.oncontextmenu=hp_cm;
   document.onmousedown=hp_dn
  }
}

if(navigator.appName.indexOf('Internet Explorer')==-1||navigator.userAgent.indexOf('MSIE')!=-1){
  if(document.all){
    document.oncontextmenu=hp_cm
  }
  
  if(document.layers){
   document.captureEvents(Event.MOUSEDOWN);
   document.onmousedown=hp_md
  }
  
  if(document.getElementById&&!document.all){
    document.oncontextmenu=hp_cm
  }
}

if(window.location.href.substring(0,4)=='file') window.location='about:blank';

if(frames){
 if(top.frames.length>0)top.location.href=self.location;
}
