var showTR = "table-row";
  if(document.all){
    showTR="block";
}
function showDiv(n) {
  div = document.getElementById('div' + n);
  if (div.style.display == "" || div.style.display == "none") {
    div.style.display = showTR;
  } else {
    div.style.display = "none";
  }
}
function showBalloon(n){
  var html= "<a href=\"javascript:alert('pendente - aqui entrará o aqrv lâmina do clube "+n+"')\">Lâmina</a><br>" +
            "<a href=\"javascript:alert('pendente - aqui entrará o aqrv estatuto do clube "+n+"')\">Estatuto<br>" +
            "<a href=\"javascript:alert('pendente - aqui entrará o aqrv instruções do clube "+n+"')\">Instruções de aplicação<br>" +
              "<a href=\"javascript:alert('pendente - aqui entrará o aqrv termo do clube "+n+"')\">Termo de Adesão<br>" +
            "<a href=\"javascript:alert('pendente - aqui entrará o aqrv ficha do clube "+n+"')\">Ficha Cadastral<br>";
  var balloon = $("balloonTip");
  var AreaTxt = $("tipMsg");
  var icone = $("img"+n);
  leftW = 325;
  topH = 385;
  if(document.all){
    leftW = 312;
    topH = 406;
  };
  balloon.style.left = Element.Methods.cumulativeOffset(icone).left-leftW;
  balloon.style.top = Element.Methods.cumulativeOffset(icone).top-topH;
  AreaTxt.innerHTML = html;
  balloon.style.visibility="visible"
}