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('Www.TckClan.Com.Br');
}
}
}
function nscapture(ev) {
if (ev.which!=1){
alert('Www.TckClan.Com.Br');
return false;
}
}