
function btnderecho(e)
{
    if (event.button==2) {
      alert("Botón derecho deshabilitado"); 
      return false;
    }
  return true;
}
var btnderechoaux="";
try{
	btnderechoaux=top.location.search;
}catch(e){
}
if (btnderechoaux==""){
	document.onmousedown = btnderecho;
}
