Si se necesita lanzar una nueva ventana del navegador (como un popup), esta es la forma correcta de hacerlo sin que se puedan repetir más ventanas.
<html>
<head>
<title>Prueba PopUp</title>
</head>
<body>
<h1>Prueba PopUp</h1>
<a href="PopUpBueno.htm" target="popup" onClick="window.open(this.href, this.target, 'width=300,height=400'); return false;">Lanzar correctamente</a>
</body>
</html>