function rf(){ gMxy(); return false; }
function gMh(){ Layer1.style.visibility='hidden'; }
function gMxy(){
 tempX = event.clientX + document.body.scrollLeft;
 tempY = event.clientY + document.body.scrollTop;
 Layer1.style.left=tempX+0;
 Layer1.style.top=tempY+0;
 Layer1.style.visibility='visible';
}
function nscapture(ev){
 if(ev.which!=1){
  alert('NetGospel.com.br\nOpção indisponível!');
  return false;
 }
}
if(document.all){
 if(navigator.appVersion.indexOf("MSIE 5")<0){
  document.oncontextmenu=rf;
  document.onmousedown=gMh;
  document.onmouseup=gMh;
  document.onclick=gMh;
  document.ondblclick=gMh;
 }
} else if(document.layers){
 window.captureEvents(Event.MOUSEDOWN);
 window.onmousedown=nscapture;
}
