Ver Mensaje Individual
  #2 (permalink)  
Antiguo 11/01/2008, 18:04
Avatar de hgp147
hgp147
 
Fecha de Ingreso: diciembre-2006
Ubicación: Buenos Aires, Argentina
Mensajes: 980
Antigüedad: 17 años, 3 meses
Puntos: 36
Re: Ventana 2 Botones

Hola txemaker:

Código HTML:
<html>
<head>
<script>
function opcion(){
      
ventana=confirm("Deseas que se abra una ventana?");

if (ventana){

window.open('http://g.santorcaz.com/E.swf','E','width=696,height=468,top=0,left=0');

}                                

}
</script>
</head>
<body onload="opcion();">
</body>
</html> 
NOTA: También me lo bloquea el pop-up.

Última edición por hgp147; 11/01/2008 a las 18:14