Ver Mensaje Individual
  #1 (permalink)  
Antiguo 19/06/2008, 10:41
Alejo18
 
Fecha de Ingreso: abril-2008
Mensajes: 122
Antigüedad: 16 años, 9 meses
Puntos: 1
Que diferencia hay en esto? cual es mejor? - Popups

Que diferencia hay entre estos 2 métodos de abrir ventanas?

Código PHP:
function abreVentana() {open("ventana.html","avVentana""toolbar=no,directories=no,menubar=yes,scrollbars=yes,status=no,width=720,height=500");   } 
Código PHP:
function abreVentana() {refiere=window.open("ventana.html","avVentana","width=720,height=500,scrollbars=0,toolbar=0,resizable=0,statusbar=0");
if(!
refiere){alert("Debe deshabilitar el bloqueador de popups");}}