Ver Mensaje Individual
  #3 (permalink)  
Antiguo 16/12/2002, 15:27
Yanix
 
Fecha de Ingreso: noviembre-2002
Ubicación: Washington, DC
Mensajes: 822
Antigüedad: 21 años, 5 meses
Puntos: 5
Añade este código:
(Información y parte del código recolectado de hotscripts.com)

Código:
<script language=javascript> 
function oprimeIE() {
if (document.all) {
return false;
}
} 
function oprimeNS(e) {
if (document.layers||(document.getElementById&&!document.all)) { 
if (e.which==2||e.which==3) {
return false;
}
}
} 
if (document.layers) {
document.captureEvents(Event.mousedown);
document.onmousedown=oprimeNS;
} 
else{
document.onmouseup=oprimeNS;
document.oncontextmenu=oprimeIE;
} 
document.oncontextmenu=new Function("return false") 
</script>
__________________
Yanira