You are on page 1of 1

<html>

<head>

<title>Ejemplo 12</title>

</head>

<body>

<script type="text/javascript">

var ventana=window.open("ejemplos9.html", "ventana1", "width=500, height=300");

var ventana=window.open("ejemplos10.html", "ventana2", "width=500, height=300, top=5, left=5");

var ventana=window.open("ejemplos11.html", "ventana3", "toolbar=1, menubar=0, location=0");

//Muestra un mensaje cada cinco segundos

setInterval("alert(\"Brrrrrrrrrrrrrrummmmm\")", 5000);

//Muestra un mensaje a los 9 segundos

setTimeout("alert(\"Tamos aquí\")", 9000);

</script>

</body>

</html>

You might also like