<!-- 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á ativo ou o nível de segurança está alto! </div> <div id="inativo" style="display:none"> Seu anti-popup não está ativo ou você não tem um anti-popup. </div> <script> if (!ispopupalive()){ document.getElementById('ativo').style.display='none'; document.getElementById('inativo').style.display=''; } </script> </body></html>