//Bloquear el uso del botón derecho en toda la web

var NS = (document.layers) ;
var IE = (document.all) ;
if(NS) document.captureEvents(Event.MOUSEDOWN) 
document.onmousedown = click ;

function click(e) {
	// Explorer
	if (IE)
	if (event.button == 2){
	accion() ;
	return false ;
	}
	// Netscape
	if (NS)
	if (e.which == 3) {
	accion() ;
	return false ;
	}
}

function accion() {
window.status = '(c) -Josu Graphics- AVIONETO.com' ;
if (IE) alert('(c) -Josu Graphics- AVIONETO.com');
return ;
}
