function click() {
//if (event.button==2) {
//alert ("La informacion que desea descargar es confidencial !!!!");
//}

if ((document.layers) && (e.which == 3 || e.which == 2))
return false;
else if (document.all && (event.button == 2 || event.button == 3))
alert('El contenido de esta WEB es estrictamente privada');
return true;
}
document.onmousedown=click;

if (document.layers) window.captureEvents(Event.MOUSEDOWN);

window.onmousedown=click;


