Código PHP:
   <html>
 <head>
  <script language="JavaScript">
 
   function abreSinNavegacion(){
    open('reportes.php', 'principal', 'resizable=yes,location=no,menubar=no,status=no,toolbar=no');
   
    cerrar();
   }
 
   function cerrar() {
    var ventana = window.self;
    ventana.opener = window.self;
    ventana.close();
   }
 
  </script>
 </head>
 <body onload="abreSinNavegacion()">
 </body>
</html> 
   
 

