<!-- Este � o c�digo HTML junto com o javascript -->
<html>
  <head>
	<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Insert title here</title>
	<script type="text/javascript">
		function ispopupalive(){
			try{
				// tentando abrir um popup
				var novajan = window.open('','','height=10,width=10');
				if (novajan || !novajan.closed){
					novajan.close();
					return false;
				}
				return;
			}catch(e){
				return;
			}
		}
	</script>
  </head>
  <body>
<div id="ativo">
  Seu anti-popup est&aacute; ativo ou o n&iacute;vel de seguran&ccedil;a est&aacute; alto!
</div>
<div id="inativo" style="display:none">
Seu anti-popup n&atilde;o est&aacute; ativo ou voc&ecirc; n&atilde;o tem um anti-popup.
</div>
<script>
if (!ispopupalive()){
  document.getElementById('ativo').style.display='none';
  document.getElementById('inativo').style.display='';  
}
</script>

</body></html>