// JavaScript Document
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 = 'D. R. © Copyright Brand Model Agency: "Todo el contenido, Imagenes y videos en esta página estan protegidos por su autor"' ;
if (IE) alert('D. R. © Copyright Brand Model Agency');
return ;
}



var NS = (document.layers) ;
var IE = (document.all) ;
if (NS) document.captureEvents(Event.MOUSEDOWN) ;
document.onmousedown = click ;
