if (document.all) {
if (navigator.appVersion.indexOf("MSIE 5")<0) {
document.onmousedown=iecapture;
document.onmouseup=iecapture;
document.onclick=iecapture;
document.ondblclick=iecapture;
} // Remove for forms and embedded controls
}else if (document.layers) {
window.captureEvents(Event.MOUSEDOWN)
window.onmousedown=nscapture
}
function iecapture() {
var el=event.srcElement;
if (event.button==2){
if ((el.tagName!="input") && (el.tagName!="TEXTAREA") && (el.tagName!="SELECT") && (el.tagName!="OBJECT") && (el.tagName!="EMBED")) {
alert('© EMILSON ANTUNES E ADVOGADOS ASSOCIADOS !\n \n ______Todos os direitos reservados______');
}
}
}
function nscapture(ev) {
if (ev.which!=1){
alert('EMILSON ANTUNES E ADVOGADOS ASSOCIADOS !\n \n ______Todos os direitos reservados______');
return false;
}
}