
// MouseBLOCKER 2.1 - Programado por Gerardo Couso (www.gexunion.com) - 18 de Mayo de 2009 

// Función para Microsoft Internet Explorer
function ClickIE()
{ if (event.button == 2)
     { alert("(c) 2009 GeX Union Software  \nIngeniería & Desarrollo Web  \nw w w . g e x u n i o n . c o m  ");  
       return false; 
     }
  return true;
}

// Función para Netscape Explorer
function ClickNE(e)
{ if (e.which==3)
     { alert("(c) 2009 GeX Union Software  \nIngeniería & Desarrollo Web  \nw w w . g e x u n i o n . c o m  ");  
       return false;
     }
  return true;
}

// Programa Principal 

 if (document.all) 
    { document.onmousedown=ClickIE; }

 if (document.layers) 
    { document.captureEvents(Event.MOUSEDOWN); 
      document.onmousedown = ClickNE;
    }

// Final de Archivo
