Ver Mensaje Individual
  #2 (permalink)  
Antiguo 12/10/2004, 09:24
Avatar de tunait
tunait
Moderadora
 
Fecha de Ingreso: agosto-2001
Ubicación: Terok Nor
Mensajes: 16.805
Antigüedad: 23 años, 5 meses
Puntos: 381
Hola zitaac,

busca esta función

Código:
function changePage() 
     {
     menuNum = document.ccDoubleList.ccBitsyG.selectedIndex;
             if (menuNum == null){alert("Please select a category from the menu.");return;}
             else
             {
             i = document.ccDoubleList.ccDoubleZ.selectedIndex;
             window.location.href = url[i];
             }
     }
y cambia esta línea

window.location.href = url[i];

por esta otra

window.open(url[i]);

Teóricamente eso te habría de funcionar sin problemas

... por cierto, postea tus pregunta una sola vez y en un solo foro.

Un saludo