function derecha(e) {

if (navigator.appName == 'Netscape' && (e.which == 3 || e.which == 2))
{
alert('Botón derecho deshabilitado. Disculpe las molestias.')
}

else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2))
{
alert('Botón derecho deshabilitado. Disculpe las molestias.')
}
}
// document.onmousedown=derecha
