<!--
  // Abre janela horscopo
  function hv(signo) {
    url="http://www.guruweb.com.br/modules/horoscopo/horoscopo.php?signo=" + signo;
    window.open(url,"hv", "resizable=yes,toolbar=no,location=no,directories=no,status=no, menubar=no,toolbar=no,scrollbars=no,maximized=yes,copyhistory=no,width=478,height=478");
  }

  // Proteção de código
  function click(event) {
      if (event.button==2) { 
          oncontextmenu='return false'; 
      }
  }
  // Desabilita menu botão direito
  //document.onmousedown="click(event)";
  //document.oncontextmenu = new Function("return false;")
  // Desabilita teclado
  // document.onkeydown= new Function("return false;");  
  
//-->