Ver Mensaje Individual
  #2 (permalink)  
Antiguo 14/07/2008, 19:59
_facilweb
 
Fecha de Ingreso: abril-2008
Mensajes: 16
Antigüedad: 16 años, 1 mes
Puntos: 0
Respuesta: Usando variables en window.open

Concatena con +

function Ventana(url, ancho, alto)
{
window.open(url, "_blank", "width="+ancho+", height="+alto+", scrollbars=yes, resizable=yes");
return false;
}