
if (window != top) top.location.href = location.href;

// Proibe clicar com o "segundo" botao
function click() 
{
  if (event.button==2) 
  {
  alert('Função bloqueada!')
  }
}
document.onmousedown=click;

