function add_bookmark() 
{
  var browsName = navigator.appName;
  
  if (browsName == "Microsoft Internet Explorer") 
  {
    window.external.AddFavorite('http://www.perguntascretinas.com.br','Perguntas Cretinas - O site mais infame do Brasil' );
  } 
  else if (browsName == "Netscape") 
  {
    alert ("Para adicionar o Perguntas Cretinas ao seu BookMark aperte CTRL+D");
  }
}

function popup(pId, pVisible)
{
  var pObj = document.getElementById(pId);

  if (pObj != null)
  {
    if (pVisible)
    {
      pObj.style.display = '';
    }
    else
    {
      pObj.style.display = 'none';
    }
  }
}

