ÿþ<html> <head> <script language="JavaScript"> var ancho = 100 var alto = 100 var fin = 670 var x = 100 var y = 100 function inicio(){ ventana = window.open("Temporals/StJoan.htm", "_blank", " resizable,height=1,width=1,top=x,left=y,screenX=x,screenY=y"); abre(); } function abre(){ if (ancho <= fin) { ventana.moveTo(x, y); ventana.resizeTo(ancho, alto); x += 5; y += 5; ancho += 15; alto += 12; timer = setTimeout("abre()", 1); } else { clearTimeout(timer); } } function redireccionar() { var url640x480 = "640.htm"; var url800x600 = "800x600/Principal.htm"; var url1024x768 = "Principal.htm"; var nWdt = screen.width; var nHgh = screen.height; inicio(); if ((nWdt == 640) && (nHgh == 480)) window.location.href= url640x480; else if ((nWdt == 800) && (nHgh == 600)) window.location.href= url800x600; else window.location.href= url1024x768; } </script> </head> <body onLoad="redireccionar()"> </body> </html>