Ahí está mi problema. Me veo obligado a usar un script de redirección porque no hay forma de decirle a Firefox dónde abrir la ventana (arriba y a la izquierda). El problema es que tengo que volver a conectarme cada vez que uso el script, aunque ya me he conectado antes. Así es como se ve el guión:
<!DOCTYPE html><html> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> <title>XXXXX</title> <script type="text/javascript"> function move_and_resize(){ mywindow=window.open(monURL,"mywindow", "menubar=0,titlebar=1,scrollbars=1,toolbar=0, location=0,status=0,left=50,top=50,width=1950,height=1000"); self.close(); } setTimeout("move_and_resize()",50); </script> </html>Gracias por tu ayuda.