<!--
<!--
/****************************************************
     Author: abc datos
     Url: http://www.abcdatos.com/trucos/webmasters6.htmll 
     Truco Boton Derecho
****************************************************/

var mensaje="PortalTAROT.com";
function Toussaint(A) {
if (document.all) {
if (event.button == 2) {
alert(mensaje);
return false;
}
}
if (document.layers) {
if (A.which == 3) {
alert(mensaje);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=Toussaint;
// --> 
