Ver Mensaje Individual
  #2 (permalink)  
Antiguo 06/01/2003, 17:04
Avatar de mikel_gomez
mikel_gomez
 
Fecha de Ingreso: febrero-2001
Mensajes: 482
Antigüedad: 23 años, 10 meses
Puntos: 3
Re: Apertura de ventana centrada.

otrebli:

Mira a ver si te sirve la siguiente función:
Código:
<!-- Nueva ventana centrada - 2001.01.23 - 2002.01.06 - Mikel Gómez -->
<script type='text/javascript'>
<!--
  function ventanaCentrada(url, anchuraVentana, alturaVentana) {
    var anchuraPantalla = screen.width ;
    var alturaPantalla  = screen.height ;
    var posX            = (anchuraPantalla - anchuraVentana)/ 2 ;
    var posY            = (alturaPantalla  - alturaVentana) / 2 ;
    opciones =
      'width='   + anchuraVentana +
      ',height=' + alturaVentana +
      ',left='   + posX +
      ',top='    + posY +
      ',toolbar=no,menubar=no,directories=no' +
      ',status=no,scrollbars=no,resize=no';
    ventana = window.open(url,'nombre',opciones);
    ventana.focus();
  }
  ventanaCentrada('http://www.google.com', 360, 240);
//-->
</script>
Saludos,
Mikel
__________________
Mikel Gómez
Hay que aprender mucho para saber poco